You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
DROP TABLE IF EXISTS Books;
|
|
|
|
CREATE TABLE Books (
|
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
title TEXT NOT NULL,
|
|
class TEXT NOT NULL,
|
|
subclass REAL NOT NULL,
|
|
cutter TEXT,
|
|
suppl TEXT,
|
|
isbn TEXT,
|
|
stat TEXT NOT NULL
|
|
);
|