12 lines
266 B
Ruby
12 lines
266 B
Ruby
class CreateBudgetInvestmentStatuses < ActiveRecord::Migration
|
|
def change
|
|
create_table :budget_investment_statuses do |t|
|
|
t.string :name
|
|
t.text :description
|
|
t.datetime :hidden_at, index: true
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|