From f15f9be809943adde53725b405d1a4bd6396d381 Mon Sep 17 00:00:00 2001 From: Jez Caudle Date: Wed, 10 May 2023 15:26:02 +0100 Subject: [PATCH] get more --- db/schema.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/db/schema.rb b/db/schema.rb index 6e34f83..0bea432 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.0].define(version: 2023_05_10_132506) do +ActiveRecord::Schema[7.0].define(version: 2023_05_10_141218) do create_table "domains", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| t.string "domain" t.datetime "created_at", null: false @@ -38,4 +38,11 @@ ActiveRecord::Schema[7.0].define(version: 2023_05_10_132506) do t.index ["unlock_token"], name: "index_users_on_unlock_token", unique: true end + create_table "virtuals", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.string "email" + t.string "destination" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + end