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

/*#pragma once
#include "Table.h"
namespace db {
namespace migrations {
namespace builder {
class CreateTableBuilder;
class AlterTableBuilder;
class DropTableBuilder;
class AbstractTableBuilder {
protected:
Table &table;
explicit AbstractTableBuilder(Table &table) : table(table) {}
public:
operator Table() const
{
return std::move(table);
};
};
}
}
}*/