Sha256: 3edd9a4e64800cbe3c18d20b417340b1665447ea5b03e8d254ee1cb7e3ff3506

Contents?: true

Size: 601 Bytes

Versions: 1

Compression:

Stored size: 601 Bytes

Contents

ActiveRecord::Schema.define do  
  create_table "users", force: :cascade do |t|
    t.string  :email
    t.string  :provider
    t.string  :country
    t.string  :first_name
    t.string  :last_name
    t.date    :dob
    t.string  :timezone
    t.datetime :last_visit_at
    t.boolean :global_notification
    t.bigint :turned_off_notification_category_ids, array: true
    t.timestamps
  end

  create_table "admin_users", force: :cascade do |t|
    t.string :email
    t.string :first_name
    t.string :last_name
    t.string :provider
    t.boolean :global_notification
    t.timestamps
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pixelforce_kit-0.9 db/schema.rb