command: rails generate redmine_plugin_model body_tracking unit name:string shortname:string type:integer
10 lines
175 B
Ruby
10 lines
175 B
Ruby
class CreateUnits < ActiveRecord::Migration
|
|
def change
|
|
create_table :units do |t|
|
|
t.string :name
|
|
t.string :shortname
|
|
t.integer :type
|
|
end
|
|
end
|
|
end
|