027_add_task_no_field.ts 491 B

1234567891011121314151617
  1. import type { MigrationLiveDefinition } from '@d8d-appcontainer/types'
  2. const addTaskNoField: MigrationLiveDefinition = {
  3. name: 'add_task_no_field',
  4. up: async (api) => {
  5. await api.schema.alterTable('inspection_tasks', (table) => {
  6. table.string('task_no').notNullable().comment('任务编号');
  7. });
  8. },
  9. down: async (api) => {
  10. await api.schema.alterTable('inspection_tasks', (table) => {
  11. table.dropColumn('task_no');
  12. });
  13. }
  14. };
  15. export default addTaskNoField