mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 23:28:02 +00:00
Fix a typo in the code snippet
This commit is contained in:
@@ -15,10 +15,10 @@ Here is an example:
|
|||||||
```sql
|
```sql
|
||||||
begin;
|
begin;
|
||||||
|
|
||||||
alter table
|
alter table orders
|
||||||
drop constraint orders_customer_id_fkey;
|
drop constraint orders_customer_id_fkey;
|
||||||
|
|
||||||
alter table
|
alter table orders
|
||||||
add constraint orders_customer_id_fkey
|
add constraint orders_customer_id_fkey
|
||||||
foreign key (customer_id)
|
foreign key (customer_id)
|
||||||
references customers (id)
|
references customers (id)
|
||||||
|
|||||||
Reference in New Issue
Block a user