diff options
Diffstat (limited to 'migrations/20241005020942_login.sql')
| -rw-r--r-- | migrations/20241005020942_login.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/migrations/20241005020942_login.sql b/migrations/20241005020942_login.sql new file mode 100644 index 0000000..92d0875 --- /dev/null +++ b/migrations/20241005020942_login.sql @@ -0,0 +1,10 @@ +create table login ( + id text + not null + primary key, + name text + not null + unique, + password_hash text + not null +); |
