How to give Free VIP

X2_

New Member
Jun 11, 2014
26
1
I would like to make VIP free for new registered users on my hotel.

How can I do this?

I'm using Phoenix 3.11.0
 

Hindi

System.out.println(" ");
Dec 30, 2012
989
192
Run this in your database;

UPDATE table users set vip = 1 where vip =0;

(Change the vip to whatever it is in the database as I'm not aware what it is in the actual database) and then set default for it to be 1
 

JacobMLucado

Pacton-Hotel.net
Dec 26, 2011
52
3
Hindi's post is wrong, it's actually UPDATE `users` SET `vip`='1' but that is only for existing users. You will need to click design table and make 1 default on the vip column. use CTRL + D to go to design table.
VRYc1Zm.png
 

Hindi

System.out.println(" ");
Dec 30, 2012
989
192
Hindi's post is wrong, it's actually UPDATE `users` SET `vip`='1' but that is only for existing users. You will need to click design table and make 1 default on the vip column. use CTRL + D to go to design table.
VRYc1Zm.png
That's what I said? and I made that query up without looking at the database I even said that change vip to whatever it is in the database, Nevertheless It's all good.
 

Users who are viewing this thread

Top