mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
6 lines
84 B
SQL
6 lines
84 B
SQL
DROP TABLE IF EXISTS catalogs;
|
|
CREATE TABLE catalogs (
|
|
id INTEGER,
|
|
name TEXT
|
|
);
|