D dwn.220.v.ua

int(11) unsigned not null auto_increment

`users` (`id` MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT 80) NOT NULL, `...

📦 .zip⚖️ 107.8 MB📅 06 Apr 2026

`users` (`id` MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT 80) NOT NULL, `created_on` INT(11) UNSIGNED NOT NULL.

⬇ Download Full Version

create table shoutbox_shout (shout_id int unsigned auto_increment primary k...

📦 .zip⚖️ 111.2 MB📅 17 May 2026

create table shoutbox_shout (shout_id int unsigned auto_increment primary key, user_id int unsigned not null, shout_date datetime, message.

⬇ Download Full Version

In this case, you have an AUTO_INCREMENT ID column, so you would not have n...

📦 .zip⚖️ 66.4 MB📅 27 Nov 2025

In this case, you have an AUTO_INCREMENT ID column, so you would not have negatives. Thus, use UNSIGNED. If you do not use.

⬇ Download Full Version

However, this is not true. int(11) does not determines the maximum value AU...

📦 .zip⚖️ 91.5 MB📅 02 Dec 2025

However, this is not true. int(11) does not determines the maximum value AUTO_INCREMENT, a INT(11) NOT NULL, b INT(11) UNSIGNED.

⬇ Download Full Version

Because it generated " id int(11) NOT NULL AUTO_INCREMENT 'id...

📦 .zip⚖️ 53.2 MB📅 08 Jun 2026

Because it generated " id int(11) NOT NULL AUTO_INCREMENT 'id' => $this->primaryKey(10)->unsigned(), issue in migrations #

⬇ Download Full Version

CREATE TABLE IF NOT EXISTS `auction` . `auction_id` bigint(20) unsigned NOT...

📦 .zip⚖️ 49.2 MB📅 13 Apr 2026

CREATE TABLE IF NOT EXISTS `auction` . `auction_id` bigint(20) unsigned NOT NULL auto_increment,. `seller_id` int(11) unsigned NOT NULL default '0'.

⬇ Download Full Version

`account_id` INT(11) UNSIGNED NOT NULL DEFAULT '0',. `char_id` IN...

📦 .zip⚖️ 23.9 MB📅 23 Oct 2025

`account_id` INT(11) UNSIGNED NOT NULL DEFAULT '0',. `char_id` INT(11) `branch_id` MEDIUMINT(9) UNSIGNED NOT NULL AUTO_INCREMENT.

⬇ Download Full Version

CREATE TABLE `postbot_auto` . `pending_id` int(11) unsigned NOT NULL AUTO_I...

📦 .zip⚖️ 80.6 MB📅 02 Jan 2026

CREATE TABLE `postbot_auto` . `pending_id` int(11) unsigned NOT NULL AUTO_INCREMENT,. `user_id` bigint(20) unsigned NOT NULL,. `media_id` int(10).

⬇ Download Full Version

CREATE TABLE animals (id MEDIUMINT NOT NULL AUTO_INCREMENT, SERIAL is an al...

📦 .zip⚖️ 32.3 MB📅 13 Dec 2025

CREATE TABLE animals (id MEDIUMINT NOT NULL AUTO_INCREMENT, SERIAL is an alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT . (NULL); -- auto value SELECT id FROM t; ++ | id | ++ | 1 | | 2 | | 10 | | 11 | ++.

⬇ Download Full Version

id int(10) unsigned NOT NULL auto_increment, locked_when timestamp(14) NOT ...

📦 .zip⚖️ 68.4 MB📅 17 May 2026

id int(10) unsigned NOT NULL auto_increment, locked_when timestamp(14) NOT default NULL, expect varchar(9) default NULL, score int(11) default NULL.

⬇ Download Full Version

Table structure for table "static_territories" # CREATE TABLE sta...

📦 .zip⚖️ 115.8 MB📅 31 Jan 2026

Table structure for table "static_territories" # CREATE TABLE static_territories (uid int(11) unsigned NOT NULL auto_increment, pid int(11) unsigned DEFAULT.

⬇ Download Full Version

int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL...

📦 .zip⚖️ 92.7 MB📅 08 Feb 2026

int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) unsigned DEFAULT '0' NOT NULL, crdate int(11) unsigned DEFAULT.

⬇ Download Full Version

CREATE TABLE category (`uid` int(11) NOT NULL, `cid` int(11) NOT NULL, `cna...

📦 .zip⚖️ 17.8 MB📅 26 Apr 2026

CREATE TABLE category (`uid` int(11) NOT NULL, `cid` int(11) NOT NULL, `cname` `blogtype` tinyint(3) unsigned NOT NULL default '0', `blogurl` text, `rss` text, CREATE TABLE diary (`bid` int(10) unsigned NOT NULL auto_increment.

⬇ Download Full Version

TABLE IF NOT EXISTS `cf_extbase_object_tags` (`id` int(11) unsigned NOT NUL...

📦 .zip⚖️ 51.9 MB📅 03 Mar 2026

TABLE IF NOT EXISTS `cf_extbase_object_tags` (`id` int(11) unsigned NOT NULL AUTO_INCREMENT, `identifier` varchar() NOT NULL DEFAULT '', `tag`.

⬇ Download Full Version

CREATE TABLE IF NOT EXISTS 'users' ('id' int(11) NOT NU...

📦 .zip⚖️ 25.4 MB📅 29 Apr 2026

CREATE TABLE IF NOT EXISTS 'users' ('id' int(11) NOT NULL AUTO_INCREMENT, 'username' varchar() NOT NULL, 'first_name'.

⬇ Download Full Version