create_table(table_name, options = {})
Instance Public methods
Creates a new table with the name table_name.
table_name may either be a String or a Symbol.
There are two ways to work with create_table. You can use the
block form or the regular form, like this:
Block form
# create_table() passes a TableDefinition object to the block.
# This form will not only create the table, but also columns for the
# table.
create_table(:suppliers) do |t|
t.column :name, :string, limit: 60
#