DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class MigrationClass < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)
11 lines
230 B
Ruby
11 lines
230 B
Ruby
class CreateBudgetGroup < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :budget_groups do |t|
|
|
t.references :budget
|
|
t.string :name, limit: 50
|
|
end
|
|
|
|
add_index :budget_groups, :budget_id
|
|
end
|
|
end
|