add basic db
This commit is contained in:
parent
c4fe433313
commit
86da48f2d6
7
Car_Database.db
Normal file
7
Car_Database.db
Normal file
@ -0,0 +1,7 @@
|
||||
CREATE TABLE Cars (
|
||||
id INTEGER PRIMARY KEY,
|
||||
model TEXT NOT NULL,
|
||||
year INTEGER NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO Cars (model, year) VALUES ('Civic', 2015), ('Corolla', 2016), ('Model 3', 2020);
|
Loading…
Reference in New Issue
Block a user