mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
11 lines
237 B
Ruby
11 lines
237 B
Ruby
class CreateReservationContexts < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :reservation_contexts do |t|
|
|
t.string :name
|
|
t.string :applicable_on, array: true, default: []
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|