This commit is contained in:
Jez Caudle 2023-05-10 15:26:02 +01:00
parent 8f1fe8c7c2
commit f15f9be809

9
db/schema.rb generated
View File

@ -10,7 +10,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # 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| create_table "domains", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t|
t.string "domain" t.string "domain"
t.datetime "created_at", null: false 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 t.index ["unlock_token"], name: "index_users_on_unlock_token", unique: true
end 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 end