Problems with creating a database
Please give me the database file, I don't know much in English, which is why I program with difficulty, but still I want to fully study this project for experience, but alas, I can't create a database for this project normally, the site does not work, alas, which is indicated in the description
actually we are working on new android learning site. create database and table-
create database android_login /** Creating Database **/
use android_login /** Selecting Database **/
create table users(
id int(11) primary key auto_increment,
unique_id varchar(23) not null unique,
name varchar(50) not null,
email varchar(100) not null unique,
encrypted_password varchar(250) not null,
otp int(6) NOT NULL,
verified int(1) NOT NULL DEFAULT '0',
created_at datetime DEFAULT NULL
); /** Creating Users Table **/
Great news for me that you are working on the site, I hope it will be completed soon, I wish you good luck in creating it! Alas, the app doesn't work. When I try to log in or register, I get a Toolbar with empty text
Tolbar*