traveller/db/migrate/20230924015422_create_peopl...

10 lines
167 B
Ruby

class CreatePeople < ActiveRecord::Migration[7.0]
def change
create_table :people do |t|
t.string :name, null: false
t.timestamps
end
end
end