Files
nairobi/db/migrate/20151215113827_create_legislations.rb
2015-12-16 11:45:46 +01:00

11 lines
193 B
Ruby

class CreateLegislations < ActiveRecord::Migration
def change
create_table :legislations do |t|
t.string :title
t.text :body
t.timestamps null: false
end
end
end