????

Your IP : 3.144.10.140


Current Path : C:/inetpub/vhost/redmine.gdtvietnam.com/extra/sample_plugin/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine.gdtvietnam.com/extra/sample_plugin/db/migrate/001_create_meetings.rb

# Sample plugin migration
# Use rake db:migrate_plugins to migrate installed plugins
class CreateMeetings < ActiveRecord::Migration[4.2]
  def self.up
    create_table :meetings do |t|
      t.column :project_id, :integer, :null => false
      t.column :description, :string
      t.column :scheduled_on, :datetime
    end
  end

  def self.down
    drop_table :meetings
  end
end