11 lines
179 B
Ruby
11 lines
179 B
Ruby
|
|
class CreateGuests < ActiveRecord::Migration[8.0]
|
||
|
|
def change
|
||
|
|
create_table :guests do |t|
|
||
|
|
t.string :username
|
||
|
|
t.string :name
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|