Run db:schema:dump with MariaDB
Most of the recent schema changes have been made with SQLite. Since we recommend MariaDB for production use, our schema should match the database.
This commit is contained in:
parent
a45fd38e37
commit
5b04b65cd8
1 changed files with 62 additions and 62 deletions
102
db/schema.rb
102
db/schema.rb
|
@ -67,25 +67,25 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
add_index "assignments", ["user_id", "task_id"], name: "index_assignments_on_user_id_and_task_id", unique: true, using: :btree
|
||||
|
||||
create_table "bank_accounts", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.string "iban"
|
||||
t.string "description"
|
||||
t.string "name", limit: 255, null: false
|
||||
t.string "iban", limit: 255
|
||||
t.string "description", limit: 255
|
||||
t.decimal "balance", precision: 12, scale: 2, default: 0, null: false
|
||||
t.datetime "last_import"
|
||||
t.string "import_continuation_point"
|
||||
t.string "import_continuation_point", limit: 255
|
||||
end
|
||||
|
||||
create_table "bank_transactions", force: :cascade do |t|
|
||||
t.integer "bank_account_id", null: false
|
||||
t.string "external_id"
|
||||
t.integer "bank_account_id", limit: 4, null: false
|
||||
t.string "external_id", limit: 255
|
||||
t.date "date"
|
||||
t.decimal "amount", precision: 8, scale: 2, null: false
|
||||
t.string "iban"
|
||||
t.string "reference"
|
||||
t.text "text"
|
||||
t.text "receipt"
|
||||
t.binary "image"
|
||||
t.integer "financial_link_id"
|
||||
t.string "iban", limit: 255
|
||||
t.string "reference", limit: 255
|
||||
t.text "text", limit: 65535
|
||||
t.text "receipt", limit: 65535
|
||||
t.binary "image", limit: 16777215
|
||||
t.integer "financial_link_id", limit: 4
|
||||
end
|
||||
|
||||
add_index "bank_transactions", ["financial_link_id"], name: "index_bank_transactions_on_financial_link_id", using: :btree
|
||||
|
@ -95,35 +95,35 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
t.date "delivered_on"
|
||||
t.datetime "created_at"
|
||||
t.text "note", limit: 65535
|
||||
t.integer "invoice_id"
|
||||
t.integer "invoice_id", limit: 4
|
||||
end
|
||||
|
||||
add_index "deliveries", ["supplier_id"], name: "index_deliveries_on_supplier_id", using: :btree
|
||||
|
||||
create_table "documents", force: :cascade do |t|
|
||||
t.string "name"
|
||||
t.string "mime"
|
||||
t.binary "data"
|
||||
t.integer "created_by_user_id"
|
||||
t.string "name", limit: 255
|
||||
t.string "mime", limit: 255
|
||||
t.binary "data", limit: 4294967295
|
||||
t.integer "created_by_user_id", limit: 4
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.integer "parent_id"
|
||||
t.integer "parent_id", limit: 4
|
||||
end
|
||||
|
||||
add_index "documents", ["parent_id"], name: "index_documents_on_parent_id", using: :btree
|
||||
|
||||
create_table "financial_links", force: :cascade do |t|
|
||||
t.text "note"
|
||||
t.text "note", limit: 65535
|
||||
end
|
||||
|
||||
create_table "financial_transaction_classes", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.string "name", limit: 255, null: false
|
||||
end
|
||||
|
||||
create_table "financial_transaction_types", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.integer "financial_transaction_class_id", null: false
|
||||
t.string "name_short"
|
||||
t.string "name", limit: 255, null: false
|
||||
t.integer "financial_transaction_class_id", limit: 4, null: false
|
||||
t.string "name_short", limit: 255
|
||||
end
|
||||
|
||||
add_index "financial_transaction_types", ["name_short"], name: "index_financial_transaction_types_on_name_short", using: :btree
|
||||
|
@ -134,9 +134,9 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
t.text "note", limit: 65535, null: false
|
||||
t.integer "user_id", limit: 4, default: 0, null: false
|
||||
t.datetime "created_on", null: false
|
||||
t.integer "financial_link_id"
|
||||
t.integer "financial_transaction_type_id", null: false
|
||||
t.integer "reverts_id"
|
||||
t.integer "financial_transaction_type_id", limit: 4, null: false
|
||||
t.integer "financial_link_id", limit: 4
|
||||
t.integer "reverts_id", limit: 4
|
||||
end
|
||||
|
||||
add_index "financial_transactions", ["ordergroup_id"], name: "index_financial_transactions_on_ordergroup_id", using: :btree
|
||||
|
@ -196,9 +196,9 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
t.text "stats", limit: 65535
|
||||
t.integer "next_weekly_tasks_number", limit: 4, default: 8
|
||||
t.boolean "ignore_apple_restriction", default: false
|
||||
t.boolean "role_invoices", default: false, null: false
|
||||
t.date "break_start"
|
||||
t.date "break_end"
|
||||
t.boolean "role_invoices", default: false, null: false
|
||||
t.boolean "role_pickups", default: false, null: false
|
||||
end
|
||||
|
||||
|
@ -225,20 +225,20 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
t.decimal "deposit_credit", precision: 8, scale: 2, default: 0, null: false
|
||||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.integer "created_by_user_id"
|
||||
t.string "attachment_mime"
|
||||
t.binary "attachment_data"
|
||||
t.integer "financial_link_id"
|
||||
t.integer "created_by_user_id", limit: 4
|
||||
t.string "attachment_mime", limit: 255
|
||||
t.binary "attachment_data", limit: 16777215
|
||||
t.integer "financial_link_id", limit: 4
|
||||
end
|
||||
|
||||
add_index "invoices", ["supplier_id"], name: "index_invoices_on_supplier_id", using: :btree
|
||||
|
||||
create_table "mail_delivery_status", force: :cascade do |t|
|
||||
t.datetime "created_at"
|
||||
t.string "email", null: false
|
||||
t.string "message", null: false
|
||||
t.string "attachment_mime"
|
||||
t.binary "attachment_data"
|
||||
t.string "email", limit: 255, null: false
|
||||
t.string "message", limit: 255, null: false
|
||||
t.string "attachment_mime", limit: 255
|
||||
t.binary "attachment_data", limit: 4294967295
|
||||
end
|
||||
|
||||
add_index "mail_delivery_status", ["email"], name: "index_mail_delivery_status_on_email", using: :btree
|
||||
|
@ -251,9 +251,9 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
add_index "memberships", ["user_id", "group_id"], name: "index_memberships_on_user_id_and_group_id", unique: true, using: :btree
|
||||
|
||||
create_table "message_recipients", force: :cascade do |t|
|
||||
t.integer "message_id", null: false
|
||||
t.integer "user_id", null: false
|
||||
t.integer "email_state", default: 0, null: false
|
||||
t.integer "message_id", limit: 4, null: false
|
||||
t.integer "user_id", limit: 4, null: false
|
||||
t.integer "email_state", limit: 4, default: 0, null: false
|
||||
t.datetime "read_at"
|
||||
end
|
||||
|
||||
|
@ -268,8 +268,8 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
t.datetime "created_at"
|
||||
t.integer "reply_to", limit: 4
|
||||
t.integer "group_id", limit: 4
|
||||
t.string "salt"
|
||||
t.binary "received_email"
|
||||
t.string "salt", limit: 255
|
||||
t.binary "received_email", limit: 16777215
|
||||
end
|
||||
|
||||
create_table "oauth_access_grants", force: :cascade do |t|
|
||||
|
@ -348,10 +348,10 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
t.decimal "foodcoop_result", precision: 8, scale: 2
|
||||
t.integer "created_by_user_id", limit: 4
|
||||
t.datetime "boxfill"
|
||||
t.integer "invoice_id", limit: 4
|
||||
t.date "pickup"
|
||||
t.integer "invoice_id"
|
||||
t.datetime "last_sent_mail"
|
||||
t.integer "end_action", default: 0, null: false
|
||||
t.integer "end_action", limit: 4, default: 0, null: false
|
||||
end
|
||||
|
||||
add_index "orders", ["state"], name: "index_orders_on_state", using: :btree
|
||||
|
@ -390,19 +390,19 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
end
|
||||
|
||||
create_table "printer_job_updates", force: :cascade do |t|
|
||||
t.integer "printer_job_id", null: false
|
||||
t.integer "printer_job_id", limit: 4, null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.string "state", null: false
|
||||
t.text "message"
|
||||
t.string "state", limit: 255, null: false
|
||||
t.text "message", limit: 65535
|
||||
end
|
||||
|
||||
add_index "printer_job_updates", ["printer_job_id", "created_at"], name: "index_printer_job_updates_on_printer_job_id_and_created_at", using: :btree
|
||||
|
||||
create_table "printer_jobs", force: :cascade do |t|
|
||||
t.integer "order_id"
|
||||
t.string "document", null: false
|
||||
t.integer "created_by_user_id", null: false
|
||||
t.integer "finished_by_user_id"
|
||||
t.integer "order_id", limit: 4
|
||||
t.string "document", limit: 255, null: false
|
||||
t.integer "created_by_user_id", limit: 4, null: false
|
||||
t.integer "finished_by_user_id", limit: 4
|
||||
t.datetime "finished_at"
|
||||
end
|
||||
|
||||
|
@ -455,7 +455,7 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
t.string "min_order_quantity", limit: 255
|
||||
t.datetime "deleted_at"
|
||||
t.string "shared_sync_method", limit: 255
|
||||
t.string "iban"
|
||||
t.string "iban", limit: 255
|
||||
end
|
||||
|
||||
add_index "suppliers", ["name"], name: "index_suppliers_on_name", unique: true, using: :btree
|
||||
|
@ -491,7 +491,7 @@ ActiveRecord::Schema.define(version: 20181201000200) do
|
|||
t.datetime "last_login"
|
||||
t.datetime "last_activity"
|
||||
t.datetime "deleted_at"
|
||||
t.string "iban"
|
||||
t.string "iban", limit: 255
|
||||
end
|
||||
|
||||
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
|
||||
|
|
Loading…
Reference in a new issue