aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-03-21 19:30:43 +0000
committerFuwn <[email protected]>2021-03-21 19:30:43 +0000
commit0ffcee76424f138239f6760be9ad587bf22dadab (patch)
treefa3bffb90bf28e24e1cd70a178a435475b09b16d
parentchore: Create sqlx migrations (diff)
downloadwhirl-0ffcee76424f138239f6760be9ad587bf22dadab.tar.xz
whirl-0ffcee76424f138239f6760be9ad587bf22dadab.zip
format: Use single space for `user_properties` migration
-rw-r--r--migrations/20210322015737_user_properties.sql10
1 files changed, 5 insertions, 5 deletions
diff --git a/migrations/20210322015737_user_properties.sql b/migrations/20210322015737_user_properties.sql
index be0ea9e..13a1e2e 100644
--- a/migrations/20210322015737_user_properties.sql
+++ b/migrations/20210322015737_user_properties.sql
@@ -1,8 +1,8 @@
CREATE TABLE "user_propertyies" (
- "user_name" TEXT NOT NULL,
- "property_id" INTEGER NOT NULL,
+ "user_name" TEXT NOT NULL,
+ "property_id" INTEGER NOT NULL,
"property_flags" INTEGER NOT NULL,
- "property_access" INTEGER NOT NULL,
- "property_string_value" TEXT,
- "property_binary_value" TEXT
+ "property_access" INTEGER NOT NULL,
+ "property_string_value" TEXT,
+ "property_binary_value" TEXT
);