You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20140403113341_create_no_us...

12 lines
225 B

class CreateNoUses < ActiveRecord::Migration
def change
create_table :no_uses do |t|
t.integer :user_id, :null => false
t.string :no_use_type
t.integer :no_use_id
t.timestamps
end
end
end