Sha256: ace9d7231c8ea12eb617549d03695d83c352ca4da15d79cdb1a6a097bb7319c6
Contents?: true
Size: 512 Bytes
Versions: 26
Compression:
Stored size: 512 Bytes
Contents
# frozen_string_literal: true class CreateUsersCustomers < ActiveRecord::Migration[6.0] def change create_table :users_customers do |t| ## Required t.string :provider, null: false, default: 'email' t.string :uid, null: false, default: '' ## Database authenticatable t.string :encrypted_password, null: false, default: '' ## User Info t.string :email ## Tokens t.text :tokens t.string :name, null: false t.timestamps end end end
Version data entries
26 entries across 26 versions & 1 rubygems