Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions share/db_schema.dba
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ $schema = array (
array (
'command' =>
array (
'length' => 255,
'length' => 2000,
'type' => 'varchar',
'not_null' => '1',
'default' => '',
Expand All @@ -27,7 +27,7 @@ $schema = array (
),
'name' =>
array (
'length' => 50,
'length' => 255,
'type' => 'varchar',
'not_null' => '1',
'default' => '',
Expand Down
4 changes: 2 additions & 2 deletions sql/mysql/schema.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CREATE TABLE ezscheduled_script (
command varchar(255) NOT NULL default '',
command varchar(2000) NOT NULL default '',
id int(11) NOT NULL auto_increment,
last_report_timestamp int(11) NOT NULL default '0',
name varchar(50) NOT NULL default '',
name varchar(255) NOT NULL default '',
process_id int(11) NOT NULL default '0',
progress int(3) default '0',
user_id int(11) NOT NULL default '0',
Expand Down
4 changes: 2 additions & 2 deletions sql/oracle/schema.sql
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
CREATE SEQUENCE s_scheduled_script;

CREATE TABLE ezscheduled_script (
command VARCHAR2(255) NOT NULL,
command VARCHAR2(2000) NOT NULL,
id INTEGER NOT NULL,
last_report_timestamp INTEGER DEFAULT 0 NOT NULL,
name VARCHAR2(50) NOT NULL,
name VARCHAR2(255) NOT NULL,
process_id INTEGER DEFAULT 0 NOT NULL,
progress INTEGER DEFAULT 0,
user_id INTEGER DEFAULT 0 NOT NULL,
Expand Down
4 changes: 2 additions & 2 deletions sql/postgresql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ CREATE SEQUENCE ezscheduled_script_s


CREATE TABLE ezscheduled_script (
command character varying(255) DEFAULT ''::character varying NOT NULL,
command character varying(2000) DEFAULT ''::character varying NOT NULL,
id integer DEFAULT nextval('ezscheduled_script_s'::text) NOT NULL,
last_report_timestamp integer DEFAULT 0 NOT NULL,
name character varying(50) DEFAULT ''::character varying NOT NULL,
name character varying(255) DEFAULT ''::character varying NOT NULL,
process_id integer DEFAULT 0 NOT NULL,
progress integer DEFAULT 0,
user_id integer DEFAULT 0 NOT NULL
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `ezscheduled_script` CHANGE `name` `name` VARCHAR( 255 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '', CHANGE `command` `command` VARCHAR( 2000 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL