v0.32.0-beta #2564
AndriiSherman
announced in
Announcements
v0.32.0-beta
#2564
Replies: 3 comments 1 reply
-
Amazing features 🎉 Correct me if I'm wrong but the snippet for "New import { defineConfig } from "drizzle-kit";
export default defineConfig({
dialect: "postgresql",
migrations: {
prefix: 'supabase'
}
}); i.e. not nested in |
Beta Was this translation helpful? Give feedback.
1 reply
-
Any plans to add the |
Beta Was this translation helpful? Give feedback.
0 replies
-
When updating a table to use identity: - id: serial('id').primaryKey(),
+ id: integer('id').primaryKey().generatedAlwaysAsIdentity({ startWith: 1000 }),
npx drizzle-kit push --force
drizzle-kit: v0.23.0
drizzle-orm: v0.32.0-5cc2ae0
No config path provided, using default path
Reading config file '/Users/oscar/dev/.../drizzle.config.ts'
Using 'pg' driver for database querying
[✓] Pulling schema from database...
error: relation "users_id_seq" already exists
at /Users/oscar/dev/.../node_modules/drizzle-kit/bin.cjs:79344:15
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Object.query (/Users/oscar/dev/.../node_modules/drizzle-kit/bin.cjs:121286:26)
at async pgPush (/Users/oscar/dev/.../node_modules/drizzle-kit/bin.cjs:124229:13)
at async _Command.<anonymous> (/Users/oscar/dev/.../node_modules/drizzle-kit/bin.cjs:131485:7) {
length: 107,
severity: 'ERROR',
code: '42P07',
detail: undefined,
hint: undefined,
position: undefined,
internalPosition: undefined,
internalQuery: undefined,
where: undefined,
schema: undefined,
table: undefined,
column: undefined,
dataType: undefined,
constraint: undefined,
file: 'heap.c',
line: '1149',
routine: 'heap_create_with_catalog'
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Preview release for
drizzle-orm@0.32.0
anddrizzle-kit@0.23.0
To install this preview release, you would need to:
This release will create a GitHub discussions post, so feel free to report threr any issues you find
New Features
🎉 PostgreSQL Sequences
You can now specify sequences in Postgres within any schema you need and define all the available properties
Example
🎉 PostgreSQL Identity Columns
Source: As mentioned, the
serial
type in Postgres is outdated and should be deprecated. Ideally, you should not use it.Identity columns
are the recommended way to specify sequences in your schema, which is why we are introducing theidentity columns
featureExample
You can specify all properties available for sequences in the
.generatedAlwaysAsIdentity()
function. Additionally, you can specify custom names for these sequencesPostgreSQL docs reference.
🎉 PostgreSQL Generated Columns
You can now specify generated columns on any column supported by PostgreSQL to use with generated columns
Example with generated column for
tsvector
In case you don't need to reference any columns from your table, you can use just
sql
template or astring
🎉 MySQL Generated Columns
You can now specify generated columns on any column supported by MySQL to use with generated columns
You can specify both
stored
andvirtual
options, for more info you can check MySQL docsAlso MySQL has a few limitation for such columns usage, which is described here
Drizzle Kit will also have limitations for
push
command:You can't change the generated constraint expression and type using
push
. Drizzle-kit will ignore this change. To make it work, you would need todrop the column
,push
, and thenadd a column with a new expression
. This was done due to the complex mapping from the database side, where the schema expression will be modified on the database side and, on introspection, we will get a different string. We can't be sure if you changed this expression or if it was changed and formatted by the database. As long as these are generated columns andpush
is mostly used for prototyping on a local database, it should be fast todrop
andcreate
generated columns. Since these columns aregenerated
, all the data will be restoredgenerate
should have no limitationsExample
In case you don't need to reference any columns from your table, you can use just
sql
template or astring
in.generatedAlwaysAs()
🎉 SQLite Generated Columns
You can now specify generated columns on any column supported by SQLite to use with generated columns
You can specify both
stored
andvirtual
options, for more info you can check SQLite docsAlso SQLite has a few limitation for such columns usage, which is described here
Drizzle Kit will also have limitations for
push
andgenerate
command:You can't change the generated constraint expression with the stored type in an existing table. You would need to delete this table and create it again. This is due to SQLite limitations for such actions. We will handle this case in future releases (it will involve the creation of a new table with data migration).
You can't add a
stored
generated expression to an existing column for the same reason as above. However, you can add avirtual
expression to an existing column.You can't change a
stored
generated expression in an existing column for the same reason as above. However, you can change avirtual
expression.You can't change the generated constraint type from
virtual
tostored
for the same reason as above. However, you can change fromstored
tovirtual
.New Drizzle Kit features
🎉 Migrations support for all the new orm features
PostgreSQL sequences, identity columns and generated columns for all dialects
🎉 New flag
--force
fordrizzle-kit push
You can auto-accept all data-loss statements using the push command. It's only available in CLI parameters. Make sure you always use it if you are fine with running data-loss statements on your database
🎉 New
migrations
flagprefix
You can now customize migration file prefixes to make the format suitable for your migration tools:
index
is the default type and will result in0001_name.sql
file names;supabase
andtimestamp
are equal and will result in20240627123900_name.sql
file names;unix
will result in unix seconds prefixes1719481298_name.sql
file names;none
will omit the prefix completely;Example: Supabase migrations format
This discussion was created from the release v0.32.0-beta.
Beta Was this translation helpful? Give feedback.
All reactions