Files
old-ribica/front-api/db/migrate/20150117094552_create_sections.rb

8 lines
133 B
Ruby
Raw Normal View History

2015-01-22 06:38:48 +01:00
class CreateSections < ActiveRecord::Migration
def change
create_table :sections do |t|
t.string :name
end
end
end