18 lines
256 B
Ruby
18 lines
256 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class CreateCibleAliases < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :cible_aliases do |t|
|
|
t.references :menu_item
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
def self.down
|
|
drop_table :cible_aliases
|
|
end
|
|
end
|