aboutsummaryrefslogtreecommitdiff
path: root/due_moe_schema.sql
blob: 0dae44793686b17b3fc323687dd1e8356547a28d (plain) (blame)
1
2
3
4
5
6
7
8
9
CREATE TABLE user_badges (
	id          integer     primary key, 
	user_id     integer        not null, 
	post        text(1000)     not null,
	image       text(1000)     not null,
	description text(1000) default null,
	category    text(1000) default null,
	time        timestamp  default current_timestamp
);