diff options
author | Akshay <[email protected]> | 2020-10-04 08:53:46 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2020-10-04 08:53:46 +0100 |
commit | 057382f8d138c63cdc48b0facd9bf4a4a229057a (patch) | |
tree | b30ba227c49918e0e65fc14068307cf11a9248bc /migrations/2020-09-22-104623_create_users |
init
Diffstat (limited to 'migrations/2020-09-22-104623_create_users')
-rw-r--r-- | migrations/2020-09-22-104623_create_users/down.sql | 3 | ||||
-rw-r--r-- | migrations/2020-09-22-104623_create_users/up.sql | 8 |
2 files changed, 11 insertions, 0 deletions
diff --git a/migrations/2020-09-22-104623_create_users/down.sql b/migrations/2020-09-22-104623_create_users/down.sql new file mode 100644 index 0000000..2c92cb7 --- /dev/null +++ b/migrations/2020-09-22-104623_create_users/down.sql | |||
@@ -0,0 +1,3 @@ | |||
1 | -- This file should undo anything in `up.sql` | ||
2 | |||
3 | DROP TABLE members; | ||
diff --git a/migrations/2020-09-22-104623_create_users/up.sql b/migrations/2020-09-22-104623_create_users/up.sql new file mode 100644 index 0000000..dfd27d9 --- /dev/null +++ b/migrations/2020-09-22-104623_create_users/up.sql | |||
@@ -0,0 +1,8 @@ | |||
1 | -- Your SQL goes here | ||
2 | CREATE TABLE members ( | ||
3 | id INTEGER PRIMARY KEY AUTO_INCREMENT, | ||
4 | username VARCHAR(255) NOT NULL UNIQUE, | ||
5 | password VARCHAR(255) NOT NULL, | ||
6 | phone_number VARCHAR(10) NOT NULL, | ||
7 | email_id VARCHAR(255) NOT NULL | ||
8 | ) | ||