Class: AddMacrosTable
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- AddMacrosTable
- Defined in:
- db/migrate/20110606000001_add_macros_table.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
12 13 14 |
# File 'db/migrate/20110606000001_add_macros_table.rb', line 12 def self.down drop_table :macros end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 |
# File 'db/migrate/20110606000001_add_macros_table.rb', line 2 def self.up create_table :macros do |t| t. t.text :owner t.text :name t.text :description t.binary :actions t.binary :prefs end end |