PythonGallery/packages/tables/admins.sql
Fluffy-Bean a7e79ab5a5 Fixed multiple requests for images
Started adding SQL table layouts
Making package loading prettier
2023-01-06 15:47:58 +00:00

7 lines
No EOL
265 B
SQL

CREATE IF NOT EXISTS TABLE abilities (
id INT(69) PRIMARY KEY AUTO_INCREMENT,
user INT(69) NOT NULL,
admin BOOLEAN NOT NULL DEFAULT FALSE,
create_posts BOOLEAN NOT NULL DEFAULT TRUE,
updated_at TIMESTAMP NOT NULL DEFAULT NOW() ON UPDATE NOW()
);