Class: CreateContentBlocksSnippets
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateContentBlocksSnippets
- Defined in:
- lib/generators/content_blocks/templates/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
11 12 13 |
# File 'lib/generators/content_blocks/templates/migration.rb', line 11 def self.down drop_table :content_blocks_snippets end |
.up ⇒ Object
2 3 4 5 6 7 8 9 |
# File 'lib/generators/content_blocks/templates/migration.rb', line 2 def self.up create_table :content_blocks_snippets, :force => true do |t| t.string :label, :null => false t.text :content t.string :status t. :null => false end end |