aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20231218185814_create_organisations.rb
blob: e4dbda7660e14c30f2bf2603ab73f22dec1ccd5e (plain) (blame)
1
2
3
4
5
6
7
8
9
class CreateOrganisations < ActiveRecord::Migration[7.1]
  def change
    create_table :organisations do |t|
      t.string :name

      t.timestamps
    end
  end
end