Class: CreateContentBuilderCategories

Inherits:
Object
  • Object
show all
Defined in:
lib/generators/templates/create_content_builder_category_migration.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/templates/create_content_builder_category_migration.rb', line 2

def change
  create_table :content_builder_categories do |t|
    t.string :name
    t.string :slug

    t.timestamps null: false
  end
end