mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 11:44:02 +00:00
11 lines
237 B
Ruby
11 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateOrganizations < ActiveRecord::Migration
|
|
def change
|
|
create_table :organizations do |t|
|
|
t.string :name, null: false
|
|
t.text :description
|
|
t.string :picture
|
|
end
|
|
end
|
|
end
|