DropView drop view
(name string)
| 682 | |
| 683 | // DropView drop view |
| 684 | func (m Migrator) DropView(name string) error { |
| 685 | return m.DB.Exec("DROP VIEW IF EXISTS ?", clause.Table{Name: name}).Error |
| 686 | } |
| 687 | |
| 688 | // GuessConstraintAndTable guess statement's constraint and it's table based on name |
| 689 | // |