Skip to content
Snippets Groups Projects
Commit c0026891 authored by renater.salaun's avatar renater.salaun
Browse files

Modif structure base

git-svn-id: https://svn.geant.net/GEANT/edugain_testidp_account_manager/trunk@3 047e039d-479c-447e-8a29-aa6bf4a09bab
parent b4a377c9
No related branches found
No related tags found
No related merge requests found
......@@ -8,16 +8,15 @@ __PACKAGE__->meta->setup(
table => 'testaccounts',
columns => [
id => { type => 'bigserial', not_null => 1 },
user_id => { type => 'varchar', length => 50, not_null => 1 },
user_password => { type => 'varchar', length => 50, not_null => 1 },
creation_date => { type => 'integer' },
expiration_date => { type => 'integer' },
id => { type => 'bigserial', not_null => 1 },
user_password => { type => 'varchar', length => 50, not_null => 1 },
creation_date => { type => 'integer' },
expiration_date => { type => 'integer' },
account_profile => { type => 'varchar', length => 100, not_null => 1 },
relying_party_entityid => { type => 'varchar', length => 250, not_null => 1 },
],
primary_key_columns => [ 'id' ],
unique_key => [ 'user_id' ],
);
1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment