summaryrefslogtreecommitdiff
path: root/db/migrate/20230309235713_create_companies.rb
blob: 7c8c5271da37137d208722e06bc4f6f894766876 (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateCompanies < ActiveRecord::Migration[7.0]
  def change
    create_table :companies do |t|
      t.string :name
      t.string :country
      t.string :short_name

      t.timestamps
    end
  end
end