I am using Apollo's Vodka server and SQLite database that comes with the server. I was trying to make some database felds start with a default value. Before you all think that i
didnt search forum or didnt google i say i did all these i read all posts carefully and need more help. I want more detailed help if someone know. Or tell me if that i want to do is possible or not.
More specifically i want each time i start the server a quest already running for new players. That means i want my quest
field got a default value for new players. I tried to edit install.sql, imported and created a new database. But the quest field didn't take the default value i want. Was empty like the original database. I want to know if i have to write the default value with a specific way, which i dont know
him. Is it possible to make a default value for a field like quests? Because the type is TEXT. Here is what i wrote on install.sql:
`paperdoll` TEXT NOT NULL,
`spells` TEXT NOT NULL,
`guild` CHAR(3) DEFAULT NULL,
`guild_rank` INTEGER DEFAULT NULL,
`quest` TEXT DEFAULT '1,START;', <--- i entered that where "1" is the quest id and "start" is the state i want to begin with.
`vars` TEXT DEFAULT NULL,
Do i have to type it with a diferend way? like with () or " " instead of ' ' i put? Is this possible at all or/and do i have to change something else?
Thank you very much for any ideas,opinion or help you might post.