11 lines
204 B
Ruby
11 lines
204 B
Ruby
class CreateOldSegments < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :old_segments do |t|
|
|
# t.column :name, :string
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :old_segments
|
|
end
|
|
end
|