mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:11:41 +00:00
schema.rb
las tablas que no se pudieron exportar son porque sqlite no soporta el tipo de campo uuid
This commit is contained in:
parent
11c4713839
commit
f46637e6ff
1 changed files with 7 additions and 0 deletions
|
@ -12,6 +12,9 @@
|
|||
|
||||
ActiveRecord::Schema.define(version: 2021_04_14_152728) do
|
||||
|
||||
# Could not dump table "access_logs" because of following StandardError
|
||||
# Unknown type '' for column 'id'
|
||||
|
||||
create_table "action_text_rich_texts", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.text "body"
|
||||
|
@ -62,6 +65,9 @@ ActiveRecord::Schema.define(version: 2021_04_14_152728) do
|
|||
t.index ["deploy_id"], name: "index_build_stats_on_deploy_id"
|
||||
end
|
||||
|
||||
# Could not dump table "csp_reports" because of following StandardError
|
||||
# Unknown type 'uuid' for column 'id'
|
||||
|
||||
create_table "deploys", force: :cascade do |t|
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
|
@ -162,6 +168,7 @@ ActiveRecord::Schema.define(version: 2021_04_14_152728) do
|
|||
t.boolean "colaboracion_anonima", default: false
|
||||
t.boolean "contact", default: false
|
||||
t.string "private_key_ciphertext"
|
||||
t.boolean "invitades", default: false
|
||||
t.boolean "acepta_invitades", default: false
|
||||
t.string "tienda_api_key_ciphertext", default: ""
|
||||
t.string "tienda_url", default: ""
|
||||
|
|
Loading…
Reference in a new issue