1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00

Fix a typo in the code snippet

This commit is contained in:
jbranchaud
2016-04-22 15:45:52 -05:00
parent e5f338eeb4
commit 18cae25235

View File

@@ -15,10 +15,10 @@ Here is an example:
```sql
begin;
alter table
alter table orders
drop constraint orders_customer_id_fkey;
alter table
alter table orders
add constraint orders_customer_id_fkey
foreign key (customer_id)
references customers (id)