forked from lavina/lavina
Compare commits
4 Commits
0d53175b5d
...
38fe8ba539
Author | SHA1 | Date |
---|---|---|
Mikhail | 38fe8ba539 | |
Mikhail | d347af4bae | |
Mikhail | b122987a17 | |
Mikhail | d7bb8121e8 |
|
@ -2,3 +2,4 @@
|
|||
/db.sqlite
|
||||
.idea/
|
||||
.DS_Store
|
||||
certs/
|
||||
|
|
|
@ -3,32 +3,27 @@ repos:
|
|||
rev: v4.5.0
|
||||
hooks:
|
||||
- id: check-toml
|
||||
- id: check-vcs-permalinks
|
||||
# - id: end-of-file-fixer
|
||||
- id: end-of-file-fixer
|
||||
- id: fix-byte-order-marker
|
||||
- id: mixed-line-ending
|
||||
- id: trailing-whitespace
|
||||
|
||||
# - repo: https://github.com/tconbeer/sqlfmt
|
||||
# rev: v0.18.0
|
||||
# hooks:
|
||||
# - id: sqlfmt
|
||||
# language_version: python
|
||||
|
||||
- repo: https://github.com/sqlfluff/sqlfluff
|
||||
rev: 3.0.3
|
||||
- repo: local
|
||||
hooks:
|
||||
- id: sqlfluff-lint
|
||||
- id: sqlfluff-fix
|
||||
- id: fmt
|
||||
name: fmt
|
||||
description: Format
|
||||
entry: cargo fmt
|
||||
language: system
|
||||
args:
|
||||
- --all
|
||||
types: [ rust ]
|
||||
pass_filenames: false
|
||||
|
||||
# - repo: https://github.com/pre-commit/mirrors-prettier
|
||||
# rev: "v3.1.0"
|
||||
# hooks:
|
||||
# - id: prettier
|
||||
# types_or: [ sql ]
|
||||
|
||||
# - repo: https://github.com/doublify/pre-commit-rust
|
||||
# rev: master
|
||||
# hooks:
|
||||
# - id: fmt
|
||||
# args: ['--verbose', '--edition', '2018', '--']
|
||||
- id: check
|
||||
name: check
|
||||
description: Check
|
||||
entry: cargo check
|
||||
language: system
|
||||
types: [ rust ]
|
||||
pass_filenames: false
|
||||
|
|
23
.sqlfluff
23
.sqlfluff
|
@ -1,23 +0,0 @@
|
|||
[sqlfluff]
|
||||
dialect = sqlite
|
||||
# exclude_rules = L016,L031,L034
|
||||
|
||||
[sqlfluff:indentation]
|
||||
tab_space_size = 4
|
||||
allow_implicit_indents = True
|
||||
|
||||
[sqlfluff:rules:capitalisation.keywords]
|
||||
# Keywords Capitalization
|
||||
capitalisation_policy = upper
|
||||
|
||||
[sqlfluff:rules:capitalisation.functions]
|
||||
# Function Name Capitalization
|
||||
extended_capitalisation_policy = upper
|
||||
|
||||
[sqlfluff:rules:capitalisation.literals]
|
||||
# Null & Boolean Literals
|
||||
capitalisation_policy = upper
|
||||
|
||||
[sqlfluff:rules:capitalisation.types]
|
||||
# Data Type Capitalization
|
||||
extended_capitalisation_policy = upper
|
|
@ -1,27 +1,29 @@
|
|||
CREATE TABLE users (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||||
CREATE TABLE users
|
||||
(
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||||
name STRING UNIQUE NOT NULL
|
||||
);
|
||||
|
||||
-- for development only, replace with properly hashed passwords later
|
||||
CREATE TABLE challenges_plain_password
|
||||
(
|
||||
user_id INTEGER PRIMARY KEY NOT NULL,
|
||||
password STRING NOT NULL
|
||||
user_id INTEGER PRIMARY KEY NOT NULL,
|
||||
password STRING NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE rooms
|
||||
(
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||||
name STRING UNIQUE NOT NULL,
|
||||
topic STRING NOT NULL,
|
||||
message_count INTEGER NOT NULL DEFAULT 0
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||||
name STRING UNIQUE NOT NULL,
|
||||
topic STRING NOT NULL,
|
||||
message_count INTEGER NOT NULL DEFAULT 0
|
||||
);
|
||||
|
||||
CREATE TABLE messages (
|
||||
CREATE TABLE messages
|
||||
(
|
||||
room_id INTEGER NOT NULL,
|
||||
id INTEGER NOT NULL, -- unique per room, sequential in one room
|
||||
content STRING NOT NULL,
|
||||
id INTEGER NOT NULL, -- unique per room, sequential in one room
|
||||
content STRING NOT NULL,
|
||||
PRIMARY KEY (room_id, id)
|
||||
);
|
||||
|
||||
|
@ -29,6 +31,6 @@ CREATE TABLE memberships
|
|||
(
|
||||
user_id INTEGER NOT NULL,
|
||||
room_id INTEGER NOT NULL,
|
||||
status INTEGER NOT NULL, -- 0 for not-joined, 1 for joined, 2 for banned
|
||||
status INTEGER NOT NULL, -- 0 for not-joined, 1 for joined, 2 for banned
|
||||
PRIMARY KEY (user_id, room_id)
|
||||
);
|
||||
|
|
|
@ -1 +1,2 @@
|
|||
ALTER TABLE messages ADD author_id INTEGER NULL REFERENCES users (id); -- noqa: PRS
|
||||
ALTER TABLE messages
|
||||
ADD author_id INTEGER NULL REFERENCES users (id);
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
-- Add migration script here
|
Loading…
Reference in New Issue