Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
Furniture database error
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="MayoMayn" data-source="post: 398317" data-attributes="member: 71840"><p>[code] ALTER TABLE `furniture` MODIFY COLUMN `is_rare` bigint(50); [/code]</p><p></p><p>If its a string, just do varchar(255)</p><p></p><p>And if you're going to modify a primary auto increment column do it like this: </p><p>[code] ALTER TABLE `furniture` MODIFY COLUMN `is_rare` int(11) NOT NULL AUTO_INCREMENT; </p><p>PRIMARY KEY(`is_rare`); [/code]</p><p></p><p>I'd recommend to use MySQL Workbench, its cleaner and way better than Navicat.</p><p></p><p>Sent from my SM-G928F using Tapatalk</p></blockquote><p></p>
[QUOTE="MayoMayn, post: 398317, member: 71840"] [code] ALTER TABLE `furniture` MODIFY COLUMN `is_rare` bigint(50); [/code] If its a string, just do varchar(255) And if you're going to modify a primary auto increment column do it like this: [code] ALTER TABLE `furniture` MODIFY COLUMN `is_rare` int(11) NOT NULL AUTO_INCREMENT; PRIMARY KEY(`is_rare`); [/code] I'd recommend to use MySQL Workbench, its cleaner and way better than Navicat. Sent from my SM-G928F using Tapatalk [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
Furniture database error
Top