mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 08:54:23 -05:00
8 lines
134 B
Ruby
8 lines
134 B
Ruby
class CreateQboItems < ActiveRecord::Migration
|
|
def change
|
|
create_table :qbo_items do |t|
|
|
t.string :name
|
|
end
|
|
end
|
|
end
|