Sha256: afddb3ab9f6c4b14463036d25fb3707fad8b9685ec80f64f8517422b2f029248
Contents?: true
Size: 290 Bytes
Versions: 25
Compression:
Stored size: 290 Bytes
Contents
class CreateAutoShops < ActiveRecord::Migration def self.up create_table :auto_shops do |t| t.string :name, :null => false t.integer :num_customers, :null => false t.string :state, :null => false end end def self.down drop_table :auto_shops end end
Version data entries
25 entries across 25 versions & 3 rubygems