mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-05-04 15:26:26 +02:00
use false instead of 0
This commit is contained in:
parent
c3c5a2837b
commit
c53a7d8d7d
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ CREATE TABLE IF NOT EXISTS transfer
|
||||||
(
|
(
|
||||||
id INT NOT NULL AUTO_INCREMENT,
|
id INT NOT NULL AUTO_INCREMENT,
|
||||||
id_received INT NOT NULL,
|
id_received INT NOT NULL,
|
||||||
progress BOOLEAN NOT NULL DEFAULT 0,
|
progress BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
PRIMARY KEY (id),
|
PRIMARY KEY (id),
|
||||||
FOREIGN KEY (id_received) REFERENCES received (id) ON DELETE CASCADE ON UPDATE CASCADE
|
FOREIGN KEY (id_received) REFERENCES received (id) ON DELETE CASCADE ON UPDATE CASCADE
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue