13 lines
267 B
Ruby
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
|