mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
13 lines
263 B
Ruby
13 lines
263 B
Ruby
class 21AddQboInvoicesIssues < ActiveRecord::Migration
|
|
def self.up
|
|
create_table :qbo_invoices_issues, :id => false do |t|
|
|
t.integer :qbo_invoice_id
|
|
t.integer :issue_id
|
|
end
|
|
end
|
|
|
|
def self.down
|
|
drop_table :qbo_invoices_issues
|
|
end
|
|
end
|