Sha256: 01e6d991c678de6f3136eff55b11e0f973f3189a046912ea989bbfd03730cca1
Contents?: true
Size: 334 Bytes
Versions: 51
Compression:
Stored size: 334 Bytes
Contents
class CreateBooks < ActiveRecord::Migration def self.up create_table :books, :force => true do |t| t.column :category_id, :integer t.column :name, :string t.column :author, :string t.column :type, :string t.column :published_on, :date end end def self.down drop_table :books end end
Version data entries
51 entries across 51 versions & 9 rubygems