Sha256: 992802c91469dc45c9da9f92fac3977048c109724489730926583116d869e7db
Contents?: true
Size: 264 Bytes
Versions: 16
Compression:
Stored size: 264 Bytes
Contents
class CreateItems < ActiveRecord::Migration using(:master, :asia, :europe, :america) def self.up create_table :items do |t| t.string :name t.integer :user_id t.timestamps end end def self.down drop_table :items end end
Version data entries
16 entries across 16 versions & 1 rubygems