Adding not null to name attribute in the "tag" table

The creation of this table fails due to this typo!
This commit is contained in:
Mohamed CHIBOUB
2020-07-29 18:43:43 -04:00
committed by GitHub
parent fb447b7363
commit 5e16ac0ee1

View File

@@ -31,7 +31,7 @@ create table follows (
create table tags ( create table tags (
id varchar(255) primary key, id varchar(255) primary key,
name varchar(255) name varchar(255) not null
); );
create table article_tags ( create table article_tags (