5 lines
94 B
SQL
5 lines
94 B
SQL
create table non_integer_rowid (
|
|
rowid text primary key,
|
|
a integer not null
|
|
) strict;
|