From 156893d774b4da5b541fdbb08428f9ec392949a0 Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Sun, 25 Apr 2021 18:21:52 +0100 Subject: Update docs, unify on SQLx, bugfixes (#40) * Begin moving to sqlx for local too * Stupid scanners should just have a nice cup of tea Random internet shit searching for /.env or whatever * Remove diesel and rusqlite fully --- migrations/2021-03-20-171007_create_users/up.sql | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 migrations/2021-03-20-171007_create_users/up.sql (limited to 'migrations/2021-03-20-171007_create_users/up.sql') diff --git a/migrations/2021-03-20-171007_create_users/up.sql b/migrations/2021-03-20-171007_create_users/up.sql deleted file mode 100644 index 46c6a372..00000000 --- a/migrations/2021-03-20-171007_create_users/up.sql +++ /dev/null @@ -1,11 +0,0 @@ --- Your SQL goes here -create table users ( - id bigserial primary key, -- also store our own ID - username varchar(32) not null unique, -- being able to contact users is useful - email varchar(128) not null unique, -- being able to contact users is useful - password varchar(128) not null unique -); - --- the prior index is case sensitive :( -CREATE UNIQUE INDEX email_unique_idx on users (LOWER(email)); -CREATE UNIQUE INDEX username_unique_idx on users (LOWER(username)); -- cgit v1.3.1