drizzle-kit 0.9.41 → 0.9.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,16 +0,0 @@
1
- import { AbstractTable } from 'drizzle-orm';
2
-
3
- export default class AuthOtpTable extends AbstractTable<AuthOtpTable> {
4
- public id = this.serial('id').primaryKey();
5
- public phone = this.varchar('phone', { size: 256 });
6
- public column1 = this.varchar('to_add_default', { size: 256 });
7
- public column2 = this.varchar('to_add_notnull', { size: 256 });
8
- public column3 = this.varchar('to_change_default', { size: 256 }).defaultValue('defaultToChange');
9
- public column4 = this.varchar('to_drop_default', { size: 256 }).defaultValue('defaul_to_be_dropped');
10
- public column5 = this.varchar('to_drop_notnull', { size: 256 }).notNull();
11
- public column6 = this.int('column6');
12
-
13
- public tableName(): string {
14
- return 'auth_otp';
15
- }
16
- }
@@ -1,15 +0,0 @@
1
- import { AbstractTable } from 'drizzle-orm';
2
-
3
- export default class AuthOtpTable extends AbstractTable<AuthOtpTable> {
4
- public id = this.serial('id').primaryKey();
5
- public phone = this.text('phone1').notNull().defaultValue('phoniren');
6
- public column1 = this.varchar('to_add_default', { size: 256 });
7
- public column2 = this.varchar('to_add_notnull', { size: 256 }).notNull();
8
- public column3 = this.varchar('to_change_default', { size: 256 }).defaultValue('defaultToChange');
9
- public column4 = this.varchar('to_drop_default', { size: 256 });
10
- public column5 = this.varchar('to_drop_notnull', { size: 256 });
11
-
12
- public tableName(): string {
13
- return 'auth_otp1';
14
- }
15
- }
package/tsconfig.json DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "extends": "../tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "./dist",
5
- "allowJs": true,
6
- },
7
- }