Sha256: 918668363828b1ba2989e146c26030f7a6d6e48c9dd2aec51fd1fadc79279693
Contents?: true
Size: 364 Bytes
Versions: 8
Compression:
Stored size: 364 Bytes
Contents
class CreateSellers < ActiveRecord::Migration def self.up create_table "sellers", :force => true do |t| t.integer "user_id", :null => false t.string "company_name" t.datetime "created_at" t.datetime "updated_at" end end def self.down drop_table :sellers end end
Version data entries
8 entries across 8 versions & 2 rubygems