Migration: Difference between revisions
Jump to navigation
Jump to search
| Line 18: | Line 18: | ||
); | ); | ||
</source> | </source> | ||
| auto incremental | | <source lang="sql"> | ||
auto incremental | |||
</source> | |||
| | | | ||
|- | |- | ||
Revision as of 03:39, 1 September 2025
Table
Column
Data Types
| Postgres | MariaDB | SQLite | |
|---|---|---|---|
| Incremental | CREATE TABLE public.test (
id1 serial8 NOT NULL,
id2 int8 GENERATED ALWAYS AS IDENTITY NOT NULL,
id3 int8 GENERATED BY DEFAULT AS IDENTITY NOT NULL
);
|
auto incremental
|
|
| DateTime |