mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-09 01:14:23 -05:00
8 lines
142 B
Ruby
8 lines
142 B
Ruby
class CreateQboEmployees < ActiveRecord::Migration
|
|
def change
|
|
create_table :qbo_employees do |t|
|
|
t.string :name
|
|
end
|
|
end
|
|
end
|