git-svn-id: https://192.168.0.254/svn/Rodax.redmine_rodax_crm/trunk@2 ff88604e-da85-c949-a72f-fc3aa3ba3724
16 lines
367 B
Ruby
16 lines
367 B
Ruby
class CreateContactsSettings < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :contacts_settings do |t|
|
|
t.column :name, :string
|
|
t.column :value, :text
|
|
t.column :project_id, :integer
|
|
t.column :updated_on, :datetime
|
|
end
|
|
add_index :contacts_settings, :project_id
|
|
end
|
|
|
|
def self.down
|
|
drop_table :contacts_settings
|
|
end
|
|
end
|