10 lines
179 B
Ruby
10 lines
179 B
Ruby
|
class AddStatusToChannels < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_column :channels, :status, :string
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
remove_column :channels, :status
|
||
|
end
|
||
|
end
|