class CreateRows

Public Instance Methods

change() click to toggle source
# File natural-backend/db/migrate/20180409175800_create_rows.rb, line 2
def change
  create_table :rows do |t|
    t.references :table, foreign_key: true

    t.timestamps
  end
end