You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table transactions
(
id INTEGER,
account VARCHAR(4) not null,
amount_change FLOAT not null,
action VARCHAR(50) not null,
balance FLOAT
)
;
create unique index transactions_id_uindex
on transactions (id)
;
create table users
(
id INTEGER not null,
name VARCHAR(50) not null,
account VARCHAR(4) not null,
pin VARCHAR(4) not null,
balance FLOAT
)
;
create unique index users_id_uindex
on users (id)
;
create unique index users_account_uindex
on users (account)
;
The same script/structure works fine If I switch to MySQL.
If you try to connect to a sqlite db, you get a "table not found {table_name}" error.
The text was updated successfully, but these errors were encountered: