tormon/db.sql

7 lines
125 B
MySQL
Raw Normal View History

2016-08-25 22:36:27 +02:00
create table users (
id int primary key not null,
email text not null,
confirmed int not null,
subscriptions text
);