From a92be45296f8cc3210030602bd83a8d0229206cd Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Wed, 22 Mar 2023 18:01:14 -0600 Subject: AƱade modelo Address MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/migrate/20230322234003_create_addresses.rb | 2 +- ...20230322234849_create_user_account_addresses.rb | 10 ++++++++++ db/schema.rb | 23 +++++++++++++++++++++- 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 db/migrate/20230322234849_create_user_account_addresses.rb (limited to 'db') diff --git a/db/migrate/20230322234003_create_addresses.rb b/db/migrate/20230322234003_create_addresses.rb index ff36085..cab3dee 100644 --- a/db/migrate/20230322234003_create_addresses.rb +++ b/db/migrate/20230322234003_create_addresses.rb @@ -1,7 +1,7 @@ class CreateAddresses < ActiveRecord::Migration[7.0] def change create_table :addresses do |t| - t.string :number + t.integer :number t.string :street t.string :zip_code t.string :country diff --git a/db/migrate/20230322234849_create_user_account_addresses.rb b/db/migrate/20230322234849_create_user_account_addresses.rb new file mode 100644 index 0000000..a2e0e9b --- /dev/null +++ b/db/migrate/20230322234849_create_user_account_addresses.rb @@ -0,0 +1,10 @@ +class CreateUserAccountAddresses < ActiveRecord::Migration[7.0] + def change + create_table :user_account_addresses do |t| + t.references :user_account, null: false, foreign_key: true + t.references :address, null: false, foreign_key: true + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 07de3af..eda3bd5 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_03_14_020111) do +ActiveRecord::Schema[7.0].define(version: 2023_03_22_234849) do create_table "active_storage_attachments", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| t.string "name", null: false t.string "record_type", null: false @@ -39,6 +39,16 @@ ActiveRecord::Schema[7.0].define(version: 2023_03_14_020111) do t.index ["blob_id", "variation_digest"], name: "index_active_storage_variant_records_uniqueness", unique: true end + create_table "addresses", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.integer "number" + t.string "street" + t.string "zip_code" + t.string "country" + t.string "city" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + create_table "companies", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| t.string "name" t.string "country" @@ -60,6 +70,15 @@ ActiveRecord::Schema[7.0].define(version: 2023_03_14_020111) do t.index ["company_id"], name: "index_products_on_company_id" end + create_table "user_account_addresses", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| + t.bigint "user_account_id", null: false + t.bigint "address_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["address_id"], name: "index_user_account_addresses_on_address_id" + t.index ["user_account_id"], name: "index_user_account_addresses_on_user_account_id" + end + create_table "user_accounts", charset: "utf8mb4", collation: "utf8mb4_general_ci", force: :cascade do |t| t.string "email" t.string "password_digest" @@ -74,4 +93,6 @@ ActiveRecord::Schema[7.0].define(version: 2023_03_14_020111) do add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id" add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id" add_foreign_key "products", "companies" + add_foreign_key "user_account_addresses", "addresses" + add_foreign_key "user_account_addresses", "user_accounts" end -- cgit v1.2.3