Project

General

Profile

Download (459 Bytes) Statistics
| Branch: | Tag: | Revision:
class CreateProxyFeatures < ActiveRecord::Migration

class Feature < ActiveRecord::Base; end

def self.up
# Create the tables
create_table :features do |t|
t.string :name, :limit => 16
t.timestamps
end

create_table :features_smart_proxies, :id => false do |t|
t.references :smart_proxy
t.references :feature
end

end

def self.down
drop_table :features
drop_table :features_smart_proxies
end
end
(67-67/172)