diff --git a/migrations/0006_card_stats.sql b/migrations/0006_card_stats.sql index 7d6b4bd..66e2d9b 100644 --- a/migrations/0006_card_stats.sql +++ b/migrations/0006_card_stats.sql @@ -17,10 +17,10 @@ along with this program. If not, see https://www.gnu.org/licenses/. */ ALTER TABLE card - ADD COLUMN power INTEGER NOT NULL DEFAULT (abs(random() % 9999)); + ADD COLUMN power INTEGER NOT NULL DEFAULT 0; ALTER TABLE card - ADD COLUMN charm INTEGER NOT NULL DEFAULT (abs(random() % 9999)); + ADD COLUMN charm INTEGER NOT NULL DEFAULT 0; ALTER TABLE card - ADD COLUMN wit INTEGER NOT NULL DEFAULT (abs(random() % 9999)); \ No newline at end of file + ADD COLUMN wit INTEGER NOT NULL DEFAULT 0; \ No newline at end of file