Skip to content

Commit

Permalink
remove bigint display width setting
Browse files Browse the repository at this point in the history
  • Loading branch information
davidangb committed Nov 6, 2024
1 parent 28b74db commit ca722c2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
CREATE PROCEDURE createEntityAttributeTempTable ()
BEGIN
create temporary table ENTITY_ATTRIBUTE_TEMP (
id bigint(20) unsigned NOT NULL AUTO_INCREMENT primary key,
id bigint unsigned NOT NULL AUTO_INCREMENT primary key,
namespace varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL,
name varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_bin NOT NULL,
value_string text,
value_json longtext,
value_number double DEFAULT NULL,
value_boolean bit(1) DEFAULT NULL,
value_entity_ref bigint(20) unsigned DEFAULT NULL,
value_entity_ref bigint unsigned DEFAULT NULL,
list_index int DEFAULT NULL,
list_length int DEFAULT NULL,
owner_id bigint(20) unsigned NOT NULL,
owner_id bigint unsigned NOT NULL,
deleted bit(1) DEFAULT false,
deleted_date timestamp NULL DEFAULT NULL
);
Expand Down

0 comments on commit ca722c2

Please sign in to comment.