Skip to content

Commit b7e3869

Browse files
committed
fix in init.sql
1 parent 6f3684e commit b7e3869

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

database/init.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ CREATE TABLE IF NOT EXISTS Participants (
55
age INT NOT NULL,
66
gender VARCHAR(15) NOT NULL,
77
phone VARCHAR(15) NOT NULL,
8-
email VARCHAR(100) UNIQUE NOT NULL,
8+
email VARCHAR(100) UNIQUE NOT NULL
99
);
1010

1111
CREATE TABLE IF NOT EXISTS Experiments (
@@ -61,5 +61,5 @@ CREATE TABLE IF NOT EXISTS SessionEvents (
6161

6262
CREATE TABLE IF NOT EXISTS Credentials (
6363
user_id VARCHAR(50) PRIMARY KEY,
64-
password VARCHAR(50) NOT NULL,
64+
password VARCHAR(50) NOT NULL
6565
)

0 commit comments

Comments
 (0)