Skip to content

Commit cecfe30

Browse files
committed
Fix migration
1 parent 1e8c557 commit cecfe30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

migrations/20250125133900_create_users_table.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ CREATE TABLE users (
77
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
88
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
99
);
10-
INSERT INTO users (id, username, email)
10+
INSERT INTO users (id, username, email, created_at, updated_at)
1111
VALUES (
12-
'1',
12+
'60dcee7a-fb13-4971-9d97-9b829bec0231',
1313
'admin',
1414
'test@test.ee',
1515
'2025-01-25 13:39:00',

0 commit comments

Comments
 (0)