Sha256: 15fd49ac07ca5db4c72556aa51bd652b07e200f756adf58f2ef4bdfd5b7754aa

Contents?: true

Size: 307 Bytes

Versions: 2

Compression:

Stored size: 307 Bytes

Contents

class CreateSellers < ActiveRecord::Migration[6.0]
  def change
    create_table :rails_marketplace_sellers do |t|
    	t.string :email
    	t.string :password
        t.string :password_digest
    	t.string :first_name
    	t.string :last_name

    	t.timestamps null: false
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rails_marketplace-0.0.2 db/migrate/20161013194852_create_sellers.rb
rails_marketplace-0.0.1 db/migrate/20161013194852_create_sellers.rb