Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ERD.md
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ very systematically.
### `shopping_external_users`
External user information.

`shopping_external_users` is an entity dsigned for when this system needs
`shopping_external_users` is an entity designed for when this system needs
to connect with external services and welcome their users as customers of
this service.

Expand Down Expand Up @@ -654,7 +654,7 @@ do the [real-name authentication](#shopping_citizens), too.
- `deleted_at`
> Withdrawal time.
>
> It can be different with [shopping_members.deleted_at](#shopping_members).
> It can be different with [shopping_members.withdrawn_at](#shopping_members).

### `shopping_administrators`
Administrator account.
Expand All @@ -679,7 +679,7 @@ do the [real-name authentication](#shopping_citizens), too.
> Deletion time of record.
>
> Withdrawal time from administrator, and can be different with
> [shopping_members.deleted_at](#shopping_members).
> [shopping_members.withdrawn_at](#shopping_members).

### `shopping_addresses`
The address information.
Expand Down Expand Up @@ -857,7 +857,7 @@ the performance in each case.
> The time when seller suspended the sale in some reason.
>
> [Customers](#shopping_customers) can't see the sale in list and
> detail page. It seems almost ssame with soft deletion, but there're
> detail page. It seems almost same with soft deletion, but there're
> some differences.
>
> At 1st, seller and [administrator](#shopping_administrators) can
Expand Down Expand Up @@ -889,7 +889,7 @@ x | [shopping_carts](#shopping_carts) | [shopping_orders](#shopping_orders)
Target channel of sale snapshot to sell.

`shopping_sale_snapshot_channels` is an entity that expresses through
which [channel](#shopping_channels) a listing
which [channel](#shopping_channels) listing
[snapshot](#shopping_sale_snapshots) is sold, and is designed to
resolve the M:N relationship between two tables.

Expand Down
10 changes: 5 additions & 5 deletions schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ model shopping_customers {

/// External user information.
///
/// `shopping_external_users` is an entity dsigned for when this system needs
/// `shopping_external_users` is an entity designed for when this system needs
/// to connect with external services and welcome their users as customers of
/// this service.
///
Expand Down Expand Up @@ -1007,7 +1007,7 @@ model shopping_sellers {

/// Withdrawal time.
///
/// It can be different with {@link shopping_members.deleted_at}.
/// It can be different with {@link shopping_members.withdrawn_at}.
deleted_at DateTime? @db.Timestamptz

//----
Expand Down Expand Up @@ -1057,7 +1057,7 @@ model shopping_administrators {
/// Deletion time of record.
///
/// Withdrawal time from administrator, and can be different with
/// {@link shopping_members.deleted_at}.
/// {@link shopping_members.withdrawn_at}.
deleted_at DateTime? @db.Timestamptz

//----
Expand Down Expand Up @@ -1197,7 +1197,7 @@ model shopping_sales {
/// The time when seller suspended the sale in some reason.
///
/// {@link shopping_customers Customers} can't see the sale in list and
/// detail page. It seems almost ssame with soft deletion, but there're
/// detail page. It seems almost same with soft deletion, but there're
/// some differences.
///
/// At 1st, seller and {@link shopping_administrators administrator} can
Expand Down Expand Up @@ -1366,7 +1366,7 @@ model shopping_sale_snapshot_tags {
/// Target channel of sale snapshot to sell.
///
/// `shopping_sale_snapshot_channels` is an entity that expresses through
/// which {@link shopping_channels channel} a listing
/// which {@link shopping_channels channel} listing
/// {@link shopping_sale_snapshots snapshot} is sold, and is designed to
/// resolve the M:N relationship between two tables.
///
Expand Down