Files
kontor/kontor-rails/db/migrate/20250626095145_create_publishers.rb
tpeetz b039ae97a9
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
add subproject kontor-rails
2026-06-01 23:47:57 +02:00

14 lines
339 B
Ruby

class CreatePublishers < ActiveRecord::Migration[8.0]
def change
create_table :publishers do |t|
t.datetime :created_date
t.datetime :last_modified_date
t.integer :version
t.string :name
t.string :weblink
t.string :parent_publisher_id
end
change_column :publishers, :id, :string
end
end