aboutsummaryrefslogtreecommitdiffstats
path: root/database/migrations
diff options
context:
space:
mode:
authorLibravatar vantezzen <properly@protonmail.com>2019-08-22 11:12:36 +0200
committerLibravatar vantezzen <properly@protonmail.com>2019-08-22 11:12:36 +0200
commitb018adf240679ec59a7344e30be39400f1ecd8af (patch)
treec076635761667dad302716b498088f1047281e46 /database/migrations
downloadferdium-server-b018adf240679ec59a7344e30be39400f1ecd8af.tar.gz
ferdium-server-b018adf240679ec59a7344e30be39400f1ecd8af.tar.zst
ferdium-server-b018adf240679ec59a7344e30be39400f1ecd8af.zip
Initial commit
Diffstat (limited to 'database/migrations')
-rw-r--r--database/migrations/1503250034279_user.js22
-rw-r--r--database/migrations/1503250034280_token.js23
-rw-r--r--database/migrations/1566385379883_service_schema.js23
3 files changed, 68 insertions, 0 deletions
diff --git a/database/migrations/1503250034279_user.js b/database/migrations/1503250034279_user.js
new file mode 100644
index 0000000..9148593
--- /dev/null
+++ b/database/migrations/1503250034279_user.js
@@ -0,0 +1,22 @@
1'use strict'
2
3/** @type {import('@adonisjs/lucid/src/Schema')} */
4const Schema = use('Schema')
5
6class UserSchema extends Schema {
7 up () {
8 this.create('users', (table) => {
9 table.increments()
10 table.string('username', 80).notNullable()
11 table.string('email', 254).notNullable().unique()
12 table.string('password', 60).notNullable()
13 table.timestamps()
14 })
15 }
16
17 down () {
18 this.drop('users')
19 }
20}
21
22module.exports = UserSchema
diff --git a/database/migrations/1503250034280_token.js b/database/migrations/1503250034280_token.js
new file mode 100644
index 0000000..c8bb9fc
--- /dev/null
+++ b/database/migrations/1503250034280_token.js
@@ -0,0 +1,23 @@
1'use strict'
2
3/** @type {import('@adonisjs/lucid/src/Schema')} */
4const Schema = use('Schema')
5
6class TokensSchema extends Schema {
7 up () {
8 this.create('tokens', (table) => {
9 table.increments()
10 table.integer('user_id').unsigned().references('id').inTable('users')
11 table.string('token', 255).notNullable().unique().index()
12 table.string('type', 80).notNullable()
13 table.boolean('is_revoked').defaultTo(false)
14 table.timestamps()
15 })
16 }
17
18 down () {
19 this.drop('tokens')
20 }
21}
22
23module.exports = TokensSchema
diff --git a/database/migrations/1566385379883_service_schema.js b/database/migrations/1566385379883_service_schema.js
new file mode 100644
index 0000000..bdc066e
--- /dev/null
+++ b/database/migrations/1566385379883_service_schema.js
@@ -0,0 +1,23 @@
1'use strict'
2
3/** @type {import('@adonisjs/lucid/src/Schema')} */
4const Schema = use('Schema')
5
6class ServiceSchema extends Schema {
7 up () {
8 this.create('services', (table) => {
9 table.increments()
10 table.string('userId', 80).notNullable()
11 table.string('name', 80).notNullable()
12 table.string('recipeId', 254).notNullable()
13 table.json('settings')
14 table.timestamps()
15 })
16 }
17
18 down () {
19 this.drop('services')
20 }
21}
22
23module.exports = ServiceSchema