diff --git a/storage/mysql/schema.00006.sql b/storage/mysql/schema.00006.sql new file mode 100644 index 0000000..e9cfd8b --- /dev/null +++ b/storage/mysql/schema.00006.sql @@ -0,0 +1 @@ +ALTER TABLE commands MODIFY COLUMN command MEDIUMTEXT NOT NULL; diff --git a/storage/mysql/schema.sql b/storage/mysql/schema.sql index 16f020b..3959f75 100644 --- a/storage/mysql/schema.sql +++ b/storage/mysql/schema.sql @@ -134,7 +134,7 @@ CREATE TABLE commands ( command_uuid VARCHAR(127) NOT NULL, request_type VARCHAR(63) NOT NULL, -- Raw command Plist - command TEXT NOT NULL, + command MEDIUMTEXT NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,