Files
fastapi-best-architecture/backend/plugin/notice/sql/postgresql/init.sql
T

21 lines
422 B
SQL

insert into sys_notice (id, title, type, status, content, created_time, updated_time)
values (1, 'hahahahahaahahaha', 0, 1, '你好😄
```
print(''fba yyds'')
```
⚡⚡⚡
| col1 | col2 | col3 |
| ---- | ---- | ---- |
| | | |
| | | |
* 1
* 2
* 3
', '2025-12-15 15:33:16', null);
select setval(pg_get_serial_sequence('sys_notice', 'id'),coalesce(max(id), 0) + 1, true) from sys_notice;