Files
nairobi/db/migrate/20151218114205_create_spending_proposals.rb
2016-01-11 12:15:42 +01:00

13 lines
267 B
Ruby

class CreateSpendingProposals < ActiveRecord::Migration
def change
create_table :spending_proposals do |t|
t.string :title
t.text :description
t.integer :author_id
t.string :external_url
t.timestamps null: false
end
end
end