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.
12 lines
285 B
12 lines
285 B
13 years ago
|
class CreateSupermasters < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :supermasters do |t|
|
||
|
t.string :ip, :limit => 25, :null => false
|
||
|
t.string :nameserver, :limit => 25, :null => false
|
||
|
t.string :account, :limit => 255
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|