[feat] add initial database schema with tables, triggers, and views
This commit is contained in:
9
database/main/attribute.sql
Normal file
9
database/main/attribute.sql
Normal file
@@ -0,0 +1,9 @@
|
||||
create table attribute
|
||||
(
|
||||
id INTEGER
|
||||
primary key,
|
||||
code TEXT
|
||||
unique,
|
||||
name TEXT
|
||||
);
|
||||
|
Reference in New Issue
Block a user