You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
303 B
6 lines
303 B
USE `flavoursWithoutBorders`;
|
|
LOCK TABLES `role` WRITE;
|
|
/*!40000 ALTER TABLE `role` DISABLE KEYS */;
|
|
INSERT INTO `role` VALUES (0,'user','Απλός χρήστης'),(1,'moderator','Διαχειριστής'),(2,'owner','Ιδιοκτήτης');
|
|
/*!40000 ALTER TABLE `role` ENABLE KEYS */;
|
|
UNLOCK TABLES;
|