11 lines
285 B
Ruby
11 lines
285 B
Ruby
class CreateConfigurationFiles < ActiveRecord::Migration
|
|
def change
|
|
create_table :configuration_files do |t|
|
|
t.string :namehash, null: false
|
|
t.integer :server_id, null: false
|
|
t.integer :file_type_id, null: false
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|