Skip to content

Commit

Permalink
update migration
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbrzzl committed Jun 26, 2024
1 parent 568edb2 commit 5a8cd05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions database/migrations/20230219170634_create_users_table.up.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CREATE TABLE users (
id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
id SERIAL PRIMARY KEY NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
avatar varchar(255) DEFAULT '' NOT NULL,
created_at datetime NOT NULL,
updated_at datetime NOT NULL,
deleted_at datetime DEFAULT NULL
created_at timestamp NOT NULL,
updated_at timestamp NOT NULL,
deleted_at timestamp DEFAULT NULL
);

0 comments on commit 5a8cd05

Please sign in to comment.