Skip to content

Commit

Permalink
Merge pull request #74 from atlanticwave-sdx/fix/issue_73
Browse files Browse the repository at this point in the history
change varchar(6) to text to allow high number of OXPs
  • Loading branch information
usmanazFIU authored Nov 12, 2024
2 parents 5898153 + d4a25a5 commit 94d3364
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public function up()
CREATE TABLE `meican_user_topology_domain` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`domain` varchar(60) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL
`domain` text CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
");

Expand All @@ -36,4 +36,4 @@ public function down()

return false;
}
}
}

0 comments on commit 94d3364

Please sign in to comment.