diff options
| author | Fuwn <[email protected]> | 2021-03-21 19:30:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-03-21 19:30:43 -0700 |
| commit | c1569d29ac7bfa0beb2f63855012039fb94fd146 (patch) | |
| tree | 5fd39fa5ef21e19dd78291a0d616b4681ad54072 | |
| parent | chore: Create sqlx migrations (diff) | |
| download | whirl-c1569d29ac7bfa0beb2f63855012039fb94fd146.tar.xz whirl-c1569d29ac7bfa0beb2f63855012039fb94fd146.zip | |
format: Use single space for `user_properties` migration
| -rw-r--r-- | migrations/20210322015737_user_properties.sql | 10 |
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 ); |