View 2016_12_18_205220_create_table_examples.py
from orator.migrations import Migration | |
class CreateTableExamples(Migration): | |
def up(self): | |
""" | |
Run the migrations. | |
""" | |
with self.schema.create('examples') as table: | |
table.big_increments('id') |