From f46637e6ff26266f21362d20dbbe8d3724c24c2c Mon Sep 17 00:00:00 2001 From: f Date: Tue, 27 Apr 2021 11:53:03 -0300 Subject: [PATCH] schema.rb las tablas que no se pudieron exportar son porque sqlite no soporta el tipo de campo uuid --- db/schema.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/db/schema.rb b/db/schema.rb index 1e6b0b1..2a93c5f 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -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: ""