implemented article composer functionality + interface, login & signup functionality + interface, auth permission functionality reflected in the nav, and determined a unified accent color accessible in dark and light mode
This commit is contained in:
+1
-1
@@ -33,7 +33,7 @@ CREATE TABLE article (
|
||||
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
||||
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
published_at TIMESTAMP DEFAULT NULL,
|
||||
published BOOLEAN DEFAULT FALSE,
|
||||
published BOOLEAN DEFAULT TRUE,
|
||||
excerpt VARCHAR(256),
|
||||
FOREIGN KEY (author_id) REFERENCES user(user_id)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user