Sha256: 37b0d511281f641f2dcda240d97b40848fa7f7d64e590ab70ae8c3cc262deb8a
Contents?: true
Size: 456 Bytes
Versions: 18
Compression:
Stored size: 456 Bytes
Contents
class CreateRecipeModels < ActiveRecord::Migration def self.up create_table :recipes do |t| t.string :name t.integer :category_id end create_table :recipe_ingredients do |t| t.string :name t.integer :recipe_id end create_table :recipe_categories do |t| t.string :name end end def self.down drop_table :recipes drop_table :recipe_ingredients drop_table :recipe_categories end end
Version data entries
18 entries across 18 versions & 1 rubygems