13 lines
317 B
MySQL
13 lines
317 B
MySQL
![]() |
create table stuff (
|
||
|
rowid integer primary key,
|
||
|
data text not null,
|
||
|
amount integer not null
|
||
|
) strict;
|
||
|
|
||
|
create table stuff2 (
|
||
|
weird_pk integer primary key,
|
||
|
label text not null unique,
|
||
|
stuff_id integer references stuff(rowid),
|
||
|
alternative_stuff_id integer references stuff(amount)
|
||
|
) strict;
|