Added table and general functions for stats system #21
1 changed files with 3 additions and 3 deletions
|
@ -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));
|
||||
ADD COLUMN wit INTEGER NOT NULL DEFAULT 0;
|
Loading…
Add table
Reference in a new issue