-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
phone need bigger rage for 10 digit int
- Loading branch information
1 parent
ad9072e
commit d532ce3
Showing
3 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -156,7 +156,7 @@ CREATE TABLE IF NOT EXISTS applicant_consent ( | |
done_ol BOOL DEFAULT false, | ||
ol_year INT NOT NULL DEFAULT '2000', | ||
distance_to_school INT DEFAULT 500, | ||
phone INT NOT NULL DEFAULT 0, | ||
phone BIGINT NOT NULL DEFAULT 0, | ||
email VARCHAR(254) DEFAULT '[email protected]', | ||
information_correct_consent BOOL DEFAULT FALSE, | ||
agree_terms_consent BOOL DEFAULT FALSE, | ||
|
@@ -171,7 +171,7 @@ CREATE TABLE IF NOT EXISTS prospect ( | |
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, | ||
active BOOLEAN NOT NULL DEFAULT TRUE, | ||
name VARCHAR(100) NOT NULL DEFAULT 'Anon', | ||
phone INT NOT NULL DEFAULT 0, | ||
phone BIGINT NOT NULL DEFAULT 0, | ||
email VARCHAR(254) DEFAULT '[email protected]', | ||
receive_information_consent BOOL DEFAULT FALSE, | ||
agree_terms_consent BOOL DEFAULT FALSE, | ||
|