Skip to content

Commit

Permalink
delete react-server render
Browse files Browse the repository at this point in the history
  • Loading branch information
talp-525 committed Apr 8, 2022
1 parent 8664cbb commit bd91ef6
Show file tree
Hide file tree
Showing 43 changed files with 64 additions and 178,263 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default class AddUniqueUserIds extends BaseSchema {
protected tableName = 'users'

public async up () {
this.schema.alterTable(this.tableName, (table) => {
await this.schema.table(this.tableName, (table) => {
table.uuid("guid").nullable()
table.unique(["guid"])

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default class AddVariationsToMediaTables extends BaseSchema {
}

public async down () {
this.schema.alterTable(this.tableName, (table) => {
await this.schema.table(this.tableName, (table) => {
table.dropColumn("media_variation")
})
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ export default class AddUserTelegramChats extends BaseSchema {
protected tableName = 'users'

public async up () {

if(await this.schema.hasColumn(this.tableName, 'telegram_chat')){
return
}
await this.schema.table(this.tableName, (table) => {
table.bigInteger("telegram_chat")
})
Expand Down
22 changes: 0 additions & 22 deletions altrpnjs/helpers/server-render/108.index.js

This file was deleted.

1 change: 0 additions & 1 deletion altrpnjs/helpers/server-render/108.index.js.map

This file was deleted.

22 changes: 0 additions & 22 deletions altrpnjs/helpers/server-render/174.index.js

This file was deleted.

1 change: 0 additions & 1 deletion altrpnjs/helpers/server-render/174.index.js.map

This file was deleted.

89 changes: 0 additions & 89 deletions altrpnjs/helpers/server-render/226.index.js

This file was deleted.

1 change: 0 additions & 1 deletion altrpnjs/helpers/server-render/226.index.js.map

This file was deleted.

22 changes: 0 additions & 22 deletions altrpnjs/helpers/server-render/249.index.js

This file was deleted.

1 change: 0 additions & 1 deletion altrpnjs/helpers/server-render/249.index.js.map

This file was deleted.

Loading

0 comments on commit bd91ef6

Please sign in to comment.