diff options
Diffstat (limited to 'migrations/20210322015737_user_properties.sql')
| -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 ); |