admin blogs
| Name | Type | Default | Nullable | Children | Parents | Comment |
|---|
| id | integer | nextval('administrator.blogs_id_seq'::regclass) | false | | | |
| user_id | integer | | false | | public.users | |
| name | text | | false | | | |
| description | text | | true | | | |
| created | timestamp without time zone | | false | | | |
| updated | timestamp without time zone | | true | | | |
| Name | Type | Definition |
|---|
| blogs_user_id_fk | FOREIGN KEY | FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE |
| blogs_pkey | PRIMARY KEY | PRIMARY KEY (id) |
| Name | Definition |
|---|
| blogs_pkey | CREATE UNIQUE INDEX blogs_pkey ON administrator.blogs USING btree (id) |

Generated by tbls