12 lines
199 B
Ruby
12 lines
199 B
Ruby
class CreateRooms < ActiveRecord::Migration[8.1]
|
|
def change
|
|
create_table :rooms do |t|
|
|
t.string :name
|
|
t.string :building
|
|
t.string :floor
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|