You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
477 B

  1. /*#pragma once
  2. #include "Table.h"
  3. namespace db {
  4. namespace migrations {
  5. namespace builder {
  6. class CreateTableBuilder;
  7. class AlterTableBuilder;
  8. class DropTableBuilder;
  9. class AbstractTableBuilder {
  10. protected:
  11. Table &table;
  12. explicit AbstractTableBuilder(Table &table) : table(table) {}
  13. public:
  14. operator Table() const
  15. {
  16. return std::move(table);
  17. };
  18. };
  19. }
  20. }
  21. }*/