meet2eat/migrations/1_init_db.rb

10 lines
164 B
Ruby
Raw Permalink Normal View History

2015-02-03 22:16:12 +00:00
Sequel.migration do
change do
create_table(:nodes) do
primary_key :id
String :room, null: false
String :name, null: false
end
end
end