51 lines
1.8 KiB
Dart
51 lines
1.8 KiB
Dart
// GENERATED CODE EDIT WITH CAUTION
|
|
// THIS FILE **WILL NOT** BE REGENERATED
|
|
// This file should be version controlled and can be manually edited.
|
|
part of 'schema.g.dart';
|
|
|
|
// While migrations are intelligently created, the difference between some commands, such as
|
|
// DropTable vs. RenameTable, cannot be determined. For this reason, please review migrations after
|
|
// they are created to ensure the correct inference was made.
|
|
|
|
// The migration version must **always** mirror the file name
|
|
|
|
const List<MigrationCommand> _migration_20260411042152_up = [
|
|
DropColumn('is_banner_active', onTable: 'Announcement'),
|
|
DropColumn('hash_code', onTable: 'Announcement'),
|
|
DropColumn('hash_code', onTable: 'AnnouncementComment'),
|
|
DropColumn('is_checked_out', onTable: 'AttendanceLog'),
|
|
DropColumn('is_verified', onTable: 'AttendanceLog'),
|
|
DropColumn('is_unverified', onTable: 'AttendanceLog'),
|
|
DropColumn('hash_code', onTable: 'ItServiceRequest'),
|
|
DropColumn('leave_type_label', onTable: 'LeaveOfAbsence'),
|
|
DropColumn('is_unread', onTable: 'NotificationItem'),
|
|
DropColumn('is_active', onTable: 'PassSlip'),
|
|
DropColumn('is_exceeded', onTable: 'PassSlip'),
|
|
DropColumn('has_face_enrolled', onTable: 'Profile'),
|
|
DropColumn('hash_code', onTable: 'Task'),
|
|
DropColumn('has_incomplete_details', onTable: 'Task'),
|
|
DropColumn('hash_code', onTable: 'Ticket')
|
|
];
|
|
|
|
const List<MigrationCommand> _migration_20260411042152_down = [
|
|
|
|
];
|
|
|
|
//
|
|
// DO NOT EDIT BELOW THIS LINE
|
|
//
|
|
|
|
@Migratable(
|
|
version: '20260411042152',
|
|
up: _migration_20260411042152_up,
|
|
down: _migration_20260411042152_down,
|
|
)
|
|
class Migration20260411042152 extends Migration {
|
|
const Migration20260411042152()
|
|
: super(
|
|
version: 20260411042152,
|
|
up: _migration_20260411042152_up,
|
|
down: _migration_20260411042152_down,
|
|
);
|
|
}
|