summaryrefslogtreecommitdiffstats
path: root/extra/sample_plugin/db/migrate/001_create_some_models.rb
blob: 39d58a649cc19e34b97ad2eb1b3f56263e6f6c88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Sample plugin migration
# Use rake db:migrate_plugins to migrate installed plugins
class CreateSomeModels < ActiveRecord::Migration
  def self.up
    create_table :example_plugin_model, :force => true do |t|
      t.column "example_attribute", :integer
    end
  end

  def self.down
    drop_table :example_plugin_model
  end
end