summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2023-03-22 18:01:14 -0600
committerHombreLaser <sebastian-440@live.com>2023-03-22 18:01:14 -0600
commita92be45296f8cc3210030602bd83a8d0229206cd (patch)
treea05581fb30ec20105a074af6e6a682823429e269 /db
parentbf58a3a1b148ed6b1ace157cfaafe34831706721 (diff)
Añade modelo Address
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20230322234003_create_addresses.rb2
-rw-r--r--db/migrate/20230322234849_create_user_account_addresses.rb10
-rw-r--r--db/schema.rb23
3 files changed, 33 insertions, 2 deletions
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