Skip to content

Instantly share code, notes, and snippets.

@stuartchaney
Created February 27, 2020 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartchaney/a297d8532a5f7d7cf72068731f08c233 to your computer and use it in GitHub Desktop.
Save stuartchaney/a297d8532a5f7d7cf72068731f08c233 to your computer and use it in GitHub Desktop.
create_table "app_events", id: false, force: :cascade do |t|
t.bigserial "id", null: false
t.bigint "shop_id"
t.string "shopify_domain"
t.string "app_type"
t.datetime "remote_date_at"
t.string "name"
t.string "details"
t.datetime "billing_on"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.integer "line_number"
t.string "shop_name"
t.string "shop_email"
t.datetime "sent_to_mixpanel_at"
t.jsonb "properties"
end
@stuartchaney
Copy link
Author

app_type -> we have identifiers for our different apps
line_number -> the csv line number

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment