ref: master
plugins/exchange/db/migrate/20120116135852_create_exchange_plugin_exchange_elements.rb
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
class CreateExchangePluginExchangeElements < ActiveRecord::Migration def self.up create_table :exchange_plugin_exchange_elements do |t| t.integer :element_id t.string :element_type t.decimal :quantity t.timestamps end end def self.down drop_table :exchange_plugin_exchange_elements end end |