7 lines
166 B
Ruby
7 lines
166 B
Ruby
class AddAdminToIWebsite < ActiveRecord::Migration
|
|
def change
|
|
add_column :i_websites, :admin_id, :integer
|
|
add_column :i_websites, :state, :string
|
|
end
|
|
end
|