12 lines
282 B
Ruby
12 lines
282 B
Ruby
class CreateBudgetInvestmentCheckpoints < ActiveRecord::Migration
|
|
def change
|
|
create_table :budget_investment_checkpoints do |t|
|
|
t.integer :investment_id
|
|
t.string "title", limit: 80
|
|
t.text "description"
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|