init
This commit is contained in:
288
database/schema.js
Normal file
288
database/schema.js
Normal file
@@ -0,0 +1,288 @@
|
||||
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
||||
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
||||
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
||||
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
||||
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
||||
};
|
||||
var __metadata = (this && this.__metadata) || function (k, v) {
|
||||
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
||||
};
|
||||
import { BaseModel, column } from '@adonisjs/lucid/orm';
|
||||
import { DateTime } from 'luxon';
|
||||
export class AuthAccessTokenSchema extends BaseModel {
|
||||
static $columns = ['abilities', 'createdAt', 'expiresAt', 'hash', 'id', 'lastUsedAt', 'name', 'tokenableId', 'type', 'updatedAt'];
|
||||
$columns = AuthAccessTokenSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], AuthAccessTokenSchema.prototype, "abilities", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], AuthAccessTokenSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column.dateTime(),
|
||||
__metadata("design:type", Object)
|
||||
], AuthAccessTokenSchema.prototype, "expiresAt", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], AuthAccessTokenSchema.prototype, "hash", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], AuthAccessTokenSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column.dateTime(),
|
||||
__metadata("design:type", Object)
|
||||
], AuthAccessTokenSchema.prototype, "lastUsedAt", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", Object)
|
||||
], AuthAccessTokenSchema.prototype, "name", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", Number)
|
||||
], AuthAccessTokenSchema.prototype, "tokenableId", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], AuthAccessTokenSchema.prototype, "type", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], AuthAccessTokenSchema.prototype, "updatedAt", void 0);
|
||||
export class BrandColorSchema extends BaseModel {
|
||||
static $columns = ['createdAt', 'hex', 'id', 'name', 'updatedAt'];
|
||||
$columns = BrandColorSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], BrandColorSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], BrandColorSchema.prototype, "hex", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], BrandColorSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], BrandColorSchema.prototype, "name", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], BrandColorSchema.prototype, "updatedAt", void 0);
|
||||
export class BrandFontSchema extends BaseModel {
|
||||
static $columns = ['createdAt', 'id', 'name', 'updatedAt'];
|
||||
$columns = BrandFontSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], BrandFontSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], BrandFontSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], BrandFontSchema.prototype, "name", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], BrandFontSchema.prototype, "updatedAt", void 0);
|
||||
export class FanartSchema extends BaseModel {
|
||||
static $columns = ['author', 'createdAt', 'id', 'imageUrl', 'sortOrder', 'title', 'updatedAt'];
|
||||
$columns = FanartSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], FanartSchema.prototype, "author", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], FanartSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], FanartSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], FanartSchema.prototype, "imageUrl", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", Object)
|
||||
], FanartSchema.prototype, "sortOrder", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], FanartSchema.prototype, "title", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], FanartSchema.prototype, "updatedAt", void 0);
|
||||
export class GameSchema extends BaseModel {
|
||||
static $columns = ['createdAt', 'icon', 'id', 'name', 'sortOrder', 'type', 'updatedAt'];
|
||||
$columns = GameSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], GameSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], GameSchema.prototype, "icon", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], GameSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], GameSchema.prototype, "name", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", Object)
|
||||
], GameSchema.prototype, "sortOrder", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], GameSchema.prototype, "type", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], GameSchema.prototype, "updatedAt", void 0);
|
||||
export class ProfileSchema extends BaseModel {
|
||||
static $columns = ['aboutText', 'avatarUrl', 'backgroundImageUrl', 'createdAt', 'description', 'id', 'name', 'title', 'updatedAt'];
|
||||
$columns = ProfileSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], ProfileSchema.prototype, "aboutText", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], ProfileSchema.prototype, "avatarUrl", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", Object)
|
||||
], ProfileSchema.prototype, "backgroundImageUrl", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], ProfileSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], ProfileSchema.prototype, "description", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], ProfileSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], ProfileSchema.prototype, "name", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], ProfileSchema.prototype, "title", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], ProfileSchema.prototype, "updatedAt", void 0);
|
||||
export class SocialLinkSchema extends BaseModel {
|
||||
static $columns = ['color', 'createdAt', 'icon', 'id', 'platform', 'updatedAt', 'url', 'username'];
|
||||
$columns = SocialLinkSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], SocialLinkSchema.prototype, "color", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], SocialLinkSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], SocialLinkSchema.prototype, "icon", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], SocialLinkSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], SocialLinkSchema.prototype, "platform", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], SocialLinkSchema.prototype, "updatedAt", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], SocialLinkSchema.prototype, "url", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], SocialLinkSchema.prototype, "username", void 0);
|
||||
export class TagSchema extends BaseModel {
|
||||
static $columns = ['createdAt', 'id', 'name', 'updatedAt'];
|
||||
$columns = TagSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], TagSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], TagSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], TagSchema.prototype, "name", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], TagSchema.prototype, "updatedAt", void 0);
|
||||
export class UserSchema extends BaseModel {
|
||||
static $columns = ['createdAt', 'email', 'fullName', 'id', 'password', 'updatedAt'];
|
||||
$columns = UserSchema.$columns;
|
||||
}
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true }),
|
||||
__metadata("design:type", DateTime)
|
||||
], UserSchema.prototype, "createdAt", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", String)
|
||||
], UserSchema.prototype, "email", void 0);
|
||||
__decorate([
|
||||
column(),
|
||||
__metadata("design:type", Object)
|
||||
], UserSchema.prototype, "fullName", void 0);
|
||||
__decorate([
|
||||
column({ isPrimary: true }),
|
||||
__metadata("design:type", Number)
|
||||
], UserSchema.prototype, "id", void 0);
|
||||
__decorate([
|
||||
column({ serializeAs: null }),
|
||||
__metadata("design:type", String)
|
||||
], UserSchema.prototype, "password", void 0);
|
||||
__decorate([
|
||||
column.dateTime({ autoCreate: true, autoUpdate: true }),
|
||||
__metadata("design:type", Object)
|
||||
], UserSchema.prototype, "updatedAt", void 0);
|
||||
//# sourceMappingURL=schema.js.map
|
||||
Reference in New Issue
Block a user