Files
grecia/db/migrate/20170804170049_create_community.rb
2017-09-05 12:51:08 +02:00

8 lines
147 B
Ruby

class CreateCommunity < ActiveRecord::Migration
def change
create_table :communities do |t|
t.timestamps null: false
end
end
end