Files
grecia/db/migrate/20180321140337_create_budget_investment_statuses.rb
2018-06-27 16:44:40 +02:00

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